dmargutierrez
commited on
Commit
•
6a67cf0
1
Parent(s):
088eb5c
Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +66 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +7 -0
- tokenizer.json +0 -0
- tokenizer_config.json +14 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "distilbert-base-uncased",
|
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-FOOD",
|
14 |
+
"2": "I-FOOD",
|
15 |
+
"3": "B-QUANTITY",
|
16 |
+
"4": "I-QUANTITY",
|
17 |
+
"5": "B-UNIT",
|
18 |
+
"6": "I-UNIT",
|
19 |
+
"7": "B-PROCESS",
|
20 |
+
"8": "I-PROCESS",
|
21 |
+
"9": "B-PHYSICAL_QUALITY",
|
22 |
+
"10": "I-PHYSICAL_QUALITY",
|
23 |
+
"11": "B-COLOR",
|
24 |
+
"12": "I-COLOR",
|
25 |
+
"13": "B-TASTE",
|
26 |
+
"14": "I-TASTE",
|
27 |
+
"15": "B-PURPOSE",
|
28 |
+
"16": "I-PURPOSE",
|
29 |
+
"17": "B-PART",
|
30 |
+
"18": "I-PART"
|
31 |
+
},
|
32 |
+
"initializer_range": 0.02,
|
33 |
+
"label2id": {
|
34 |
+
"B-COLOR": 11,
|
35 |
+
"B-FOOD": 1,
|
36 |
+
"B-PART": 17,
|
37 |
+
"B-PHYSICAL_QUALITY": 9,
|
38 |
+
"B-PROCESS": 7,
|
39 |
+
"B-PURPOSE": 15,
|
40 |
+
"B-QUANTITY": 3,
|
41 |
+
"B-TASTE": 13,
|
42 |
+
"B-UNIT": 5,
|
43 |
+
"I-COLOR": 12,
|
44 |
+
"I-FOOD": 2,
|
45 |
+
"I-PART": 18,
|
46 |
+
"I-PHYSICAL_QUALITY": 10,
|
47 |
+
"I-PROCESS": 8,
|
48 |
+
"I-PURPOSE": 16,
|
49 |
+
"I-QUANTITY": 4,
|
50 |
+
"I-TASTE": 14,
|
51 |
+
"I-UNIT": 6,
|
52 |
+
"O": 0
|
53 |
+
},
|
54 |
+
"max_position_embeddings": 512,
|
55 |
+
"model_type": "distilbert",
|
56 |
+
"n_heads": 12,
|
57 |
+
"n_layers": 6,
|
58 |
+
"pad_token_id": 0,
|
59 |
+
"qa_dropout": 0.1,
|
60 |
+
"seq_classif_dropout": 0.2,
|
61 |
+
"sinusoidal_pos_embds": false,
|
62 |
+
"tie_weights_": true,
|
63 |
+
"torch_dtype": "float32",
|
64 |
+
"transformers_version": "4.26.0",
|
65 |
+
"vocab_size": 30522
|
66 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bd76809b926c2d19321c4cf1ab864f7f9b205e5a87470d698af0fe9968f241d3
|
3 |
+
size 265544805
|
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": true,
|
4 |
+
"mask_token": "[MASK]",
|
5 |
+
"model_max_length": 512,
|
6 |
+
"name_or_path": "distilbert-base-uncased",
|
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:130c30ccc411df9ff921a2f90f002be48c22c00971a08e95b1f78ef8d46fe630
|
3 |
+
size 3515
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|