shellypeng commited on
Commit
b07ebba
·
verified ·
1 Parent(s): 76d720a

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation": "gelu",
3
+ "architectures": [
4
+ "DistilBertForTokenClassification"
5
+ ],
6
+ "attention_dropout": 0.2635766626590143,
7
+ "dim": 768,
8
+ "dropout": 0.32451042121670526,
9
+ "hidden_dim": 3072,
10
+ "id2label": {
11
+ "0": "B-art",
12
+ "1": "B-eve",
13
+ "10": "I-geo",
14
+ "11": "I-gpe",
15
+ "12": "I-nat",
16
+ "13": "I-org",
17
+ "14": "I-per",
18
+ "15": "I-tim",
19
+ "16": "O",
20
+ "2": "B-geo",
21
+ "3": "B-gpe",
22
+ "4": "B-nat",
23
+ "5": "B-org",
24
+ "6": "B-per",
25
+ "7": "B-tim",
26
+ "8": "I-art",
27
+ "9": "I-eve"
28
+ },
29
+ "initializer_range": 0.02,
30
+ "label2id": {
31
+ "B-art": "0",
32
+ "B-eve": "1",
33
+ "B-geo": "2",
34
+ "B-gpe": "3",
35
+ "B-nat": "4",
36
+ "B-org": "5",
37
+ "B-per": "6",
38
+ "B-tim": "7",
39
+ "I-art": "8",
40
+ "I-eve": "9",
41
+ "I-geo": "10",
42
+ "I-gpe": "11",
43
+ "I-nat": "12",
44
+ "I-org": "13",
45
+ "I-per": "14",
46
+ "I-tim": "15",
47
+ "O": "16"
48
+ },
49
+ "max_position_embeddings": 512,
50
+ "model_type": "distilbert",
51
+ "n_heads": 12,
52
+ "n_layers": 6,
53
+ "output_past": true,
54
+ "pad_token_id": 0,
55
+ "qa_dropout": 0.1,
56
+ "seq_classif_dropout": 0.2,
57
+ "sinusoidal_pos_embds": false,
58
+ "tie_weights_": true,
59
+ "torch_dtype": "float32",
60
+ "transformers_version": "4.50.1",
61
+ "vocab_size": 28996
62
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10b9672bfc7272949cbc34d366752aa0a1ceda6ae77409942b146f02a2c52ddb
3
+ size 260828276
runs/Apr08_16-16-35_7425ea686d70/events.out.tfevents.1744128997.7425ea686d70.34584.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9f01c91f6ee75f9a0f96cfb443e6ee88da8f4b242227c75946da12b0b0d1c99
3
+ size 7926
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,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": false,
45
+ "cls_token": "[CLS]",
46
+ "do_lower_case": false,
47
+ "extra_special_tokens": {},
48
+ "mask_token": "[MASK]",
49
+ "model_max_length": 512,
50
+ "pad_token": "[PAD]",
51
+ "sep_token": "[SEP]",
52
+ "strip_accents": null,
53
+ "tokenize_chinese_chars": true,
54
+ "tokenizer_class": "DistilBertTokenizer",
55
+ "unk_token": "[UNK]"
56
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14b33c0699055388349a1e60a1800c938edb4dfa05f764e4827909b10c0bb8f3
3
+ size 5368
vocab.txt ADDED
The diff for this file is too large to render. See raw diff