dayvidwang commited on
Commit
601a4e2
·
1 Parent(s): db31c79

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-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": "B-company",
13
+ "1": "B-facility",
14
+ "2": "B-geo-loc",
15
+ "3": "B-movie",
16
+ "4": "B-musicartist",
17
+ "5": "B-other",
18
+ "6": "B-person",
19
+ "7": "B-product",
20
+ "8": "B-sportsteam",
21
+ "9": "B-tvshow",
22
+ "10": "I-company",
23
+ "11": "I-facility",
24
+ "12": "I-geo-loc",
25
+ "13": "I-movie",
26
+ "14": "I-musicartist",
27
+ "15": "I-other",
28
+ "16": "I-person",
29
+ "17": "I-product",
30
+ "18": "I-sportsteam",
31
+ "19": "I-tvshow",
32
+ "20": "O"
33
+ },
34
+ "initializer_range": 0.02,
35
+ "label2id": {
36
+ "B-company": 0,
37
+ "B-facility": 1,
38
+ "B-geo-loc": 2,
39
+ "B-movie": 3,
40
+ "B-musicartist": 4,
41
+ "B-other": 5,
42
+ "B-person": 6,
43
+ "B-product": 7,
44
+ "B-sportsteam": 8,
45
+ "B-tvshow": 9,
46
+ "I-company": 10,
47
+ "I-facility": 11,
48
+ "I-geo-loc": 12,
49
+ "I-movie": 13,
50
+ "I-musicartist": 14,
51
+ "I-other": 15,
52
+ "I-person": 16,
53
+ "I-product": 17,
54
+ "I-sportsteam": 18,
55
+ "I-tvshow": 19,
56
+ "O": 20
57
+ },
58
+ "max_position_embeddings": 512,
59
+ "model_type": "distilbert",
60
+ "n_heads": 12,
61
+ "n_layers": 6,
62
+ "output_past": true,
63
+ "pad_token_id": 0,
64
+ "qa_dropout": 0.1,
65
+ "seq_classif_dropout": 0.2,
66
+ "sinusoidal_pos_embds": false,
67
+ "tie_weights_": true,
68
+ "torch_dtype": "float32",
69
+ "transformers_version": "4.30.1",
70
+ "vocab_size": 28996
71
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11c6fa61acdd5cbcb6454f1b14003aefec4bcc4c30753faca312d1e95f81e235
3
+ size 260863077
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,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": false,
5
+ "mask_token": "[MASK]",
6
+ "model_max_length": 512,
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "DistilBertTokenizer",
12
+ "unk_token": "[UNK]"
13
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c02b2ddc8deeb970d97d4e7cbc0a3b9355852edb685257a15f654884e1104891
3
+ size 3963
vocab.txt ADDED
The diff for this file is too large to render. See raw diff