reyhanemyr commited on
Commit
5fc79db
1 Parent(s): 6d33d93

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-COMPANY",
13
+ "1": "B-DEGREE",
14
+ "2": "B-INSTITUTION",
15
+ "3": "B-LOC",
16
+ "4": "B-ORG",
17
+ "5": "B-PER",
18
+ "6": "B-ROLE",
19
+ "7": "B-SKILL",
20
+ "8": "I-COMPANY",
21
+ "9": "I-DEGREE",
22
+ "10": "I-INSTITUTION",
23
+ "11": "I-LOC",
24
+ "12": "I-ORG",
25
+ "13": "I-PER",
26
+ "14": "I-ROLE",
27
+ "15": "I-SKILL",
28
+ "16": "O"
29
+ },
30
+ "initializer_range": 0.02,
31
+ "label2id": {
32
+ "B-COMPANY": 0,
33
+ "B-DEGREE": 1,
34
+ "B-INSTITUTION": 2,
35
+ "B-LOC": 3,
36
+ "B-ORG": 4,
37
+ "B-PER": 5,
38
+ "B-ROLE": 6,
39
+ "B-SKILL": 7,
40
+ "I-COMPANY": 8,
41
+ "I-DEGREE": 9,
42
+ "I-INSTITUTION": 10,
43
+ "I-LOC": 11,
44
+ "I-ORG": 12,
45
+ "I-PER": 13,
46
+ "I-ROLE": 14,
47
+ "I-SKILL": 15,
48
+ "O": 16
49
+ },
50
+ "max_position_embeddings": 512,
51
+ "model_type": "distilbert",
52
+ "n_heads": 12,
53
+ "n_layers": 6,
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.27.2",
61
+ "vocab_size": 30522
62
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95c458790f2effc2d68931b7e5238a5ac2eca859b805d8c35cdbf8c11918cad2
3
+ size 265538661
runs/May24_21-11-00_9465b718808a/1684962666.1417925/events.out.tfevents.1684962666.9465b718808a.31899.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69a49ae2c120740a19afd0248934288ddee8da32e883f0f6333c1b59df5040f3
3
+ size 5919
runs/May24_21-11-00_9465b718808a/events.out.tfevents.1684962666.9465b718808a.31899.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4226b9972ddf0a841d8600fb5fc1de869c4dfb0c8d6ab190cb621449d3654428
3
+ size 5106
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
+ "add_prefix_space": true,
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": true,
5
+ "mask_token": "[MASK]",
6
+ "model_max_length": 512,
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:496f1b35f2eccef7d04477008b610bd0f96669be0288886536e521dfd2266ba1
3
+ size 3643
vocab.txt ADDED
The diff for this file is too large to render. See raw diff