Davide Mazzaccara commited on
Commit
0a61c70
1 Parent(s): f9fbe88

Training in progress, epoch 1

Browse files
.gitattributes CHANGED
@@ -29,3 +29,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
29
  *.zip filter=lfs diff=lfs merge=lfs -text
30
  *.zstandard filter=lfs diff=lfs merge=lfs -text
31
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
29
  *.zip filter=lfs diff=lfs merge=lfs -text
30
  *.zstandard filter=lfs diff=lfs merge=lfs -text
31
  *tfevents* filter=lfs diff=lfs merge=lfs -text
32
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "xlm-roberta-large-finetuned-conll03-english",
3
+ "_num_labels": 8,
4
+ "architectures": [
5
+ "XLMRobertaForTokenClassification"
6
+ ],
7
+ "attention_probs_dropout_prob": 0.1,
8
+ "bos_token_id": 0,
9
+ "classifier_dropout": null,
10
+ "eos_token_id": 2,
11
+ "hidden_act": "gelu",
12
+ "hidden_dropout_prob": 0.1,
13
+ "hidden_size": 1024,
14
+ "id2label": {
15
+ "0": "B-Archive",
16
+ "1": "B-CelestialObject",
17
+ "10": "B-Event",
18
+ "11": "B-Fellowship",
19
+ "12": "B-Formula",
20
+ "13": "B-Grant",
21
+ "14": "B-Identifier",
22
+ "15": "B-Instrument",
23
+ "16": "B-Location",
24
+ "17": "B-Mission",
25
+ "18": "B-Model",
26
+ "19": "B-ObservationalTechniques",
27
+ "2": "B-CelestialObjectRegion",
28
+ "20": "B-Observatory",
29
+ "21": "B-Organization",
30
+ "22": "B-Person",
31
+ "23": "B-Proposal",
32
+ "24": "B-Software",
33
+ "25": "B-Survey",
34
+ "26": "B-Tag",
35
+ "27": "B-Telescope",
36
+ "28": "B-TextGarbage",
37
+ "29": "B-URL",
38
+ "3": "B-CelestialRegion",
39
+ "30": "B-Wavelength",
40
+ "31": "I-Archive",
41
+ "32": "I-CelestialObject",
42
+ "33": "I-CelestialObjectRegion",
43
+ "34": "I-CelestialRegion",
44
+ "35": "I-Citation",
45
+ "36": "I-Collaboration",
46
+ "37": "I-ComputingFacility",
47
+ "38": "I-Database",
48
+ "39": "I-Dataset",
49
+ "4": "B-Citation",
50
+ "40": "I-EntityOfFutureInterest",
51
+ "41": "I-Event",
52
+ "42": "I-Fellowship",
53
+ "43": "I-Formula",
54
+ "44": "I-Grant",
55
+ "45": "I-Identifier",
56
+ "46": "I-Instrument",
57
+ "47": "I-Location",
58
+ "48": "I-Mission",
59
+ "49": "I-Model",
60
+ "5": "B-Collaboration",
61
+ "50": "I-ObservationalTechniques",
62
+ "51": "I-Observatory",
63
+ "52": "I-Organization",
64
+ "53": "I-Person",
65
+ "54": "I-Proposal",
66
+ "55": "I-Software",
67
+ "56": "I-Survey",
68
+ "57": "I-Tag",
69
+ "58": "I-Telescope",
70
+ "59": "I-TextGarbage",
71
+ "6": "B-ComputingFacility",
72
+ "60": "I-URL",
73
+ "61": "I-Wavelength",
74
+ "62": "O",
75
+ "7": "B-Database",
76
+ "8": "B-Dataset",
77
+ "9": "B-EntityOfFutureInterest"
78
+ },
79
+ "initializer_range": 0.02,
80
+ "intermediate_size": 4096,
81
+ "label2id": {
82
+ "B-Archive": "0",
83
+ "B-CelestialObject": "1",
84
+ "B-CelestialObjectRegion": "2",
85
+ "B-CelestialRegion": "3",
86
+ "B-Citation": "4",
87
+ "B-Collaboration": "5",
88
+ "B-ComputingFacility": "6",
89
+ "B-Database": "7",
90
+ "B-Dataset": "8",
91
+ "B-EntityOfFutureInterest": "9",
92
+ "B-Event": "10",
93
+ "B-Fellowship": "11",
94
+ "B-Formula": "12",
95
+ "B-Grant": "13",
96
+ "B-Identifier": "14",
97
+ "B-Instrument": "15",
98
+ "B-Location": "16",
99
+ "B-Mission": "17",
100
+ "B-Model": "18",
101
+ "B-ObservationalTechniques": "19",
102
+ "B-Observatory": "20",
103
+ "B-Organization": "21",
104
+ "B-Person": "22",
105
+ "B-Proposal": "23",
106
+ "B-Software": "24",
107
+ "B-Survey": "25",
108
+ "B-Tag": "26",
109
+ "B-Telescope": "27",
110
+ "B-TextGarbage": "28",
111
+ "B-URL": "29",
112
+ "B-Wavelength": "30",
113
+ "I-Archive": "31",
114
+ "I-CelestialObject": "32",
115
+ "I-CelestialObjectRegion": "33",
116
+ "I-CelestialRegion": "34",
117
+ "I-Citation": "35",
118
+ "I-Collaboration": "36",
119
+ "I-ComputingFacility": "37",
120
+ "I-Database": "38",
121
+ "I-Dataset": "39",
122
+ "I-EntityOfFutureInterest": "40",
123
+ "I-Event": "41",
124
+ "I-Fellowship": "42",
125
+ "I-Formula": "43",
126
+ "I-Grant": "44",
127
+ "I-Identifier": "45",
128
+ "I-Instrument": "46",
129
+ "I-Location": "47",
130
+ "I-Mission": "48",
131
+ "I-Model": "49",
132
+ "I-ObservationalTechniques": "50",
133
+ "I-Observatory": "51",
134
+ "I-Organization": "52",
135
+ "I-Person": "53",
136
+ "I-Proposal": "54",
137
+ "I-Software": "55",
138
+ "I-Survey": "56",
139
+ "I-Tag": "57",
140
+ "I-Telescope": "58",
141
+ "I-TextGarbage": "59",
142
+ "I-URL": "60",
143
+ "I-Wavelength": "61",
144
+ "O": "62"
145
+ },
146
+ "layer_norm_eps": 1e-05,
147
+ "max_position_embeddings": 514,
148
+ "model_type": "xlm-roberta",
149
+ "num_attention_heads": 16,
150
+ "num_hidden_layers": 24,
151
+ "output_past": true,
152
+ "pad_token_id": 1,
153
+ "position_embedding_type": "absolute",
154
+ "torch_dtype": "float32",
155
+ "transformers_version": "4.21.1",
156
+ "type_vocab_size": 1,
157
+ "use_cache": true,
158
+ "vocab_size": 250002
159
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9de1ede0354215eaa0bc458afd20b8fcdb7d84b28a5fc8b26ea3b5c669730e0b
3
+ size 2235758129
runs/Aug08_10-22-45_f63f3f664383/1659954180.2284157/events.out.tfevents.1659954180.f63f3f664383.77.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e0c329739f8d353dbec4aed56a10b315bbe34080a23d938b4c924eba9439cc9
3
+ size 5370
runs/Aug08_10-22-45_f63f3f664383/events.out.tfevents.1659954180.f63f3f664383.77.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24e9160b56d5df0c185c0f89e2cddd3a4bf389fc5379a278074092447944a241
3
+ size 6982
runs/Aug08_10-27-26_f63f3f664383/1659954454.0182557/events.out.tfevents.1659954454.f63f3f664383.77.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ddba20a558eb9e3d18fe9cd8f7a1c0f98195346b899c8ad06a9a589161bfb2f
3
+ size 5370
runs/Aug08_10-27-26_f63f3f664383/events.out.tfevents.1659954454.f63f3f664383.77.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42870cda2fd6672a7fea90c2c0155343683a0b55dce81b55fa2ecb7ca818fced
3
+ size 6982
runs/Aug08_10-36-03_f63f3f664383/1659954971.1085074/events.out.tfevents.1659954971.f63f3f664383.77.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f222758838fb87544da4359a3d53608032afc26e5cca58e9d0f0130a78c75301
3
+ size 5370
runs/Aug08_10-36-03_f63f3f664383/events.out.tfevents.1659954971.f63f3f664383.77.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c108cfd28f15e97d49c08aa9c55ddee2156f700acf6d3ba149f6850d99c5ee74
3
+ size 6982
runs/Aug08_10-50-27_f63f3f664383/1659955834.8993812/events.out.tfevents.1659955834.f63f3f664383.77.7 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:743bd69b936fc6b7db2a2bc043f10b1e715c34102fd775319a3b99ad30aea6bd
3
+ size 5370
runs/Aug08_10-50-27_f63f3f664383/events.out.tfevents.1659955834.f63f3f664383.77.6 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6027ac0152c742fb332a2ec0159daaac426c5fa5d63ca72c41cbad18a4dee9d2
3
+ size 6982
runs/Aug08_11-02-31_f63f3f664383/1659956558.949409/events.out.tfevents.1659956558.f63f3f664383.77.9 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65d116c62f0be836196c8074a620025aa8945339bfa36082e357610d234502ef
3
+ size 5370
runs/Aug08_11-02-31_f63f3f664383/events.out.tfevents.1659956558.f63f3f664383.77.8 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f22111347dd95ebec565e2aaf2dba4368fc3ad40aa3110dd469ad94a6d17b77
3
+ size 7454
special_tokens_map.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "cls_token": "<s>",
4
+ "eos_token": "</s>",
5
+ "mask_token": {
6
+ "content": "<mask>",
7
+ "lstrip": true,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false
11
+ },
12
+ "pad_token": "<pad>",
13
+ "sep_token": "</s>",
14
+ "unk_token": "<unk>"
15
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2c509a525eb51aebb33fb59c24ee923c1d4c1db23c3ae81fe05ccf354084f7b
3
+ size 17082758
tokenizer_config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "cls_token": "<s>",
4
+ "eos_token": "</s>",
5
+ "mask_token": {
6
+ "__type": "AddedToken",
7
+ "content": "<mask>",
8
+ "lstrip": true,
9
+ "normalized": true,
10
+ "rstrip": false,
11
+ "single_word": false
12
+ },
13
+ "model_max_length": 512,
14
+ "name_or_path": "xlm-roberta-large-finetuned-conll03-english",
15
+ "pad_token": "<pad>",
16
+ "sep_token": "</s>",
17
+ "special_tokens_map_file": null,
18
+ "tokenizer_class": "XLMRobertaTokenizer",
19
+ "unk_token": "<unk>"
20
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85a429d1efb40b0e29ba93d11238090b3e449291afe1cf064537a8f060c6add6
3
+ size 3311