dmargutierrez commited on
Commit
75a38bc
1 Parent(s): 325d8ae

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-multilingual-cased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForTokenClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "O",
13
+ "1": "B-ORGANISATION",
14
+ "2": "I-ORGANISATION",
15
+ "3": "B-ADDRESS",
16
+ "4": "I-ADDRESS",
17
+ "5": "B-DATE",
18
+ "6": "I-DATE",
19
+ "7": "B-PERSON",
20
+ "8": "I-PERSON",
21
+ "9": "B-AMOUNT",
22
+ "10": "I-AMOUNT",
23
+ "11": "B-TIME",
24
+ "12": "I-TIME"
25
+ },
26
+ "initializer_range": 0.02,
27
+ "label2id": {
28
+ "B-ADDRESS": 3,
29
+ "B-AMOUNT": 9,
30
+ "B-DATE": 5,
31
+ "B-ORGANISATION": 1,
32
+ "B-PERSON": 7,
33
+ "B-TIME": 11,
34
+ "I-ADDRESS": 4,
35
+ "I-AMOUNT": 10,
36
+ "I-DATE": 6,
37
+ "I-ORGANISATION": 2,
38
+ "I-PERSON": 8,
39
+ "I-TIME": 12,
40
+ "O": 0
41
+ },
42
+ "max_position_embeddings": 512,
43
+ "model_type": "distilbert",
44
+ "n_heads": 12,
45
+ "n_layers": 6,
46
+ "output_past": true,
47
+ "pad_token_id": 0,
48
+ "qa_dropout": 0.1,
49
+ "seq_classif_dropout": 0.2,
50
+ "sinusoidal_pos_embds": false,
51
+ "tie_weights_": true,
52
+ "torch_dtype": "float32",
53
+ "transformers_version": "4.26.0",
54
+ "vocab_size": 119547
55
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7737ab4177de30d4d06c32e88ac403c7f5e4839292b1814bcc009cc0ad142e46
3
+ size 539011109
runs/Mar17_09-31-32_t1-45-bhs5/1679045501.3551981/events.out.tfevents.1679045501.t1-45-bhs5.19567.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:80a005b87764947116f590ec7397d932282599eeb40e9f51c38d3c8564223e66
3
+ size 5764
runs/Mar17_09-31-32_t1-45-bhs5/events.out.tfevents.1679045501.t1-45-bhs5.19567.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3c33a11332650f541bc55a1d69c4f292bfce826d7d48e12ced992d21fea2f73
3
+ size 5335
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_lower_case": false,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "name_or_path": "distilbert-base-multilingual-cased",
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "special_tokens_map_file": null,
10
+ "strip_accents": null,
11
+ "tokenize_chinese_chars": true,
12
+ "tokenizer_class": "DistilBertTokenizer",
13
+ "unk_token": "[UNK]"
14
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a09467161aac64b5e60b30012c63bba5ddc42223df4db22df583a813f3e1560d
3
+ size 3579
vocab.txt ADDED
The diff for this file is too large to render. See raw diff