lewtun HF staff commited on
Commit
85d0fe0
1 Parent(s): e1a9de7

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-uncased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForSequenceClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "manner of an action",
13
+ "1": "inventions, books and other creative pieces",
14
+ "2": "animals",
15
+ "3": "expression abbreviated",
16
+ "4": "an individual",
17
+ "5": "a group or organization of persons",
18
+ "6": "title of a person",
19
+ "7": "definition of something",
20
+ "8": "dates",
21
+ "9": "reasons",
22
+ "10": "events",
23
+ "11": "states",
24
+ "12": "description of something",
25
+ "13": "number of something",
26
+ "14": "other entities",
27
+ "15": "letters like a-z",
28
+ "16": "other locations",
29
+ "17": "religions",
30
+ "18": "food",
31
+ "19": "countries",
32
+ "20": "colors",
33
+ "21": "equivalent terms",
34
+ "22": "cities",
35
+ "23": "organs of body",
36
+ "24": "diseases and medicine",
37
+ "25": "mountains",
38
+ "26": "prices",
39
+ "27": "products",
40
+ "28": "the lasting time of something",
41
+ "29": "elements and substances",
42
+ "30": "sports",
43
+ "31": "plants",
44
+ "32": "techniques and methods",
45
+ "33": "size, area and volume",
46
+ "34": "description of a person",
47
+ "35": "musical instrument",
48
+ "36": "abbreviation",
49
+ "37": "other numbers",
50
+ "38": "speed",
51
+ "39": "words with a special property",
52
+ "40": "languages",
53
+ "41": "fractions",
54
+ "42": "postcodes or other codes",
55
+ "43": "linear measures",
56
+ "44": "temperature",
57
+ "45": "symbols and signs",
58
+ "46": "ranks",
59
+ "47": "vehicles",
60
+ "48": "weight",
61
+ "49": "currency names"
62
+ },
63
+ "initializer_range": 0.02,
64
+ "label2id": {
65
+ "a group or organization of persons": 5,
66
+ "abbreviation": 36,
67
+ "an individual": 4,
68
+ "animals": 2,
69
+ "cities": 22,
70
+ "colors": 20,
71
+ "countries": 19,
72
+ "currency names": 49,
73
+ "dates": 8,
74
+ "definition of something": 7,
75
+ "description of a person": 34,
76
+ "description of something": 12,
77
+ "diseases and medicine": 24,
78
+ "elements and substances": 29,
79
+ "equivalent terms": 21,
80
+ "events": 10,
81
+ "expression abbreviated": 3,
82
+ "food": 18,
83
+ "fractions": 41,
84
+ "inventions, books and other creative pieces": 1,
85
+ "languages": 40,
86
+ "letters like a-z": 15,
87
+ "linear measures": 43,
88
+ "manner of an action": 0,
89
+ "mountains": 25,
90
+ "musical instrument": 35,
91
+ "number of something": 13,
92
+ "organs of body": 23,
93
+ "other entities": 14,
94
+ "other locations": 16,
95
+ "other numbers": 37,
96
+ "plants": 31,
97
+ "postcodes or other codes": 42,
98
+ "prices": 26,
99
+ "products": 27,
100
+ "ranks": 46,
101
+ "reasons": 9,
102
+ "religions": 17,
103
+ "size, area and volume": 33,
104
+ "speed": 38,
105
+ "sports": 30,
106
+ "states": 11,
107
+ "symbols and signs": 45,
108
+ "techniques and methods": 32,
109
+ "temperature": 44,
110
+ "the lasting time of something": 28,
111
+ "title of a person": 6,
112
+ "vehicles": 47,
113
+ "weight": 48,
114
+ "words with a special property": 39
115
+ },
116
+ "max_position_embeddings": 512,
117
+ "model_type": "distilbert",
118
+ "n_heads": 12,
119
+ "n_layers": 6,
120
+ "pad_token_id": 0,
121
+ "problem_type": "single_label_classification",
122
+ "qa_dropout": 0.1,
123
+ "seq_classif_dropout": 0.2,
124
+ "sinusoidal_pos_embds": false,
125
+ "tie_weights_": true,
126
+ "torch_dtype": "float32",
127
+ "transformers_version": "4.15.0",
128
+ "vocab_size": 30522
129
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f66897797aa80ba23bcec6c7c8c82ed1443a946be845195670a9c7d431a6d3cf
3
+ size 268007729
special_tokens_map.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "distilbert-base-uncased", "tokenizer_class": "DistilBertTokenizer"}
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00702cba283158518eafdbcfd5909bee8d35fd39b73dd788c0fa25751f0383f8
3
+ size 3055
vocab.txt ADDED
The diff for this file is too large to render. See raw diff