morganchen1007 commited on
Commit
24b2be1
1 Parent(s): 7dc8694

Training in progress, step 500

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "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": "B-YEAR",
23
+ "11": "I-YEAR",
24
+ "12": "O"
25
+ },
26
+ "initializer_range": 0.02,
27
+ "label2id": {
28
+ "B-AUTHOR": 0,
29
+ "B-PUBYEAR": 2,
30
+ "B-SOURCE": 6,
31
+ "B-SPAGE": 8,
32
+ "B-TITLE": 4,
33
+ "B-YEAR": 10,
34
+ "I-AUTHOR": 1,
35
+ "I-PUBYEAR": 3,
36
+ "I-SOURCE": 7,
37
+ "I-SPAGE": 9,
38
+ "I-TITLE": 5,
39
+ "I-YEAR": 11,
40
+ "O": 12
41
+ },
42
+ "max_position_embeddings": 512,
43
+ "model_type": "distilbert",
44
+ "n_heads": 12,
45
+ "n_layers": 6,
46
+ "pad_token_id": 0,
47
+ "qa_dropout": 0.1,
48
+ "seq_classif_dropout": 0.2,
49
+ "sinusoidal_pos_embds": false,
50
+ "tie_weights_": true,
51
+ "torch_dtype": "float32",
52
+ "transformers_version": "4.20.1",
53
+ "vocab_size": 30522
54
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c19a90d779a0591cb3f125d45a550d27201724284753bc8dd1a20ae5a8630c2
3
+ size 265526309
runs/Feb20_11-40-56_tensorflow05/1676864484.352773/events.out.tfevents.1676864484.tensorflow05.30617.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4bafc0c90f1da1ec840706e7e5b60cf4b462956f56f98cc65796e4cf07c2f504
3
+ size 5425
runs/Feb20_11-40-56_tensorflow05/events.out.tfevents.1676864484.tensorflow05.30617.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de4acbc5e2b28c3d26339047a7b0686299cf77dc70549ba942170618ca0c8caf
3
+ size 6169
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:7ce0fd1f09b8297183db6cb319b95143b92e930c5447ece955e594f7a5727ab2
3
+ size 3387
vocab.txt ADDED
The diff for this file is too large to render. See raw diff