morganchen1007 commited on
Commit
16c6c74
·
1 Parent(s): 58d33e8

Training in progress, step 500

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-AUTHOR",
13
+ "1": "I-AUTHOR",
14
+ "2": "B-PUBYEAR",
15
+ "3": "I-PUBYEAR",
16
+ "4": "B-TITLE",
17
+ "5": "I-TITLE",
18
+ "6": "B-SOURCE",
19
+ "7": "I-SOURCE",
20
+ "8": "B-SPAGE",
21
+ "9": "I-SPAGE",
22
+ "10": "O"
23
+ },
24
+ "initializer_range": 0.02,
25
+ "label2id": {
26
+ "B-AUTHOR": 0,
27
+ "B-PUBYEAR": 2,
28
+ "B-SOURCE": 6,
29
+ "B-SPAGE": 8,
30
+ "B-TITLE": 4,
31
+ "I-AUTHOR": 1,
32
+ "I-PUBYEAR": 3,
33
+ "I-SOURCE": 7,
34
+ "I-SPAGE": 9,
35
+ "I-TITLE": 5,
36
+ "O": 10
37
+ },
38
+ "max_position_embeddings": 512,
39
+ "model_type": "distilbert",
40
+ "n_heads": 12,
41
+ "n_layers": 6,
42
+ "output_past": true,
43
+ "pad_token_id": 0,
44
+ "qa_dropout": 0.1,
45
+ "seq_classif_dropout": 0.2,
46
+ "sinusoidal_pos_embds": false,
47
+ "tie_weights_": true,
48
+ "torch_dtype": "float32",
49
+ "transformers_version": "4.20.1",
50
+ "vocab_size": 28996
51
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc98d6bd265268bbc00faa23816efa2658efe0e5ee32b2d25a8b82f5f21e8055
3
+ size 260832293
runs/Mar02_13-35-11_tensorflow05/1677735334.1090202/events.out.tfevents.1677735334.tensorflow05.15656.10 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67dd67349466cc5dbdec9f83500dbc0f8b10db23c001560187b988afa3189f15
3
+ size 5513
runs/Mar02_13-35-11_tensorflow05/events.out.tfevents.1677735334.tensorflow05.15656.9 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0973f1f5c9dd8ed1dbc6d5b6c2e428c8e4208737deecddd75b0a710fd58b554
3
+ size 4266
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": false,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "name_or_path": "distilbert-base-cased",
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:93d6a1a8b8a1ebbb512da4df9736d469ea9aea1af815ff0d2b7d6608fb535c6f
3
+ size 3451
vocab.txt ADDED
The diff for this file is too large to render. See raw diff