qfrodicio commited on
Commit
632362a
1 Parent(s): 27d595d

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-cased",
3
+ "architectures": [
4
+ "BertForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "gradient_checkpointing": false,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "id2label": {
13
+ "0": "B-OTHER_PEER",
14
+ "1": "I-OTHER_PEER",
15
+ "2": "B-EXPLAIN",
16
+ "3": "I-EXPLAIN",
17
+ "4": "B-SELF",
18
+ "5": "I-SELF",
19
+ "6": "B-NO",
20
+ "7": "I-NO",
21
+ "8": "B-QUESTION",
22
+ "9": "I-QUESTION"
23
+ },
24
+ "initializer_range": 0.02,
25
+ "intermediate_size": 3072,
26
+ "label2id": {
27
+ "B-EXPLAIN": 2,
28
+ "B-NO": 6,
29
+ "B-OTHER_PEER": 0,
30
+ "B-QUESTION": 8,
31
+ "B-SELF": 4,
32
+ "I-EXPLAIN": 3,
33
+ "I-NO": 7,
34
+ "I-OTHER_PEER": 1,
35
+ "I-QUESTION": 9,
36
+ "I-SELF": 5
37
+ },
38
+ "layer_norm_eps": 1e-12,
39
+ "max_position_embeddings": 512,
40
+ "model_type": "bert",
41
+ "num_attention_heads": 12,
42
+ "num_hidden_layers": 12,
43
+ "pad_token_id": 0,
44
+ "position_embedding_type": "absolute",
45
+ "torch_dtype": "float32",
46
+ "transformers_version": "4.26.1",
47
+ "type_vocab_size": 2,
48
+ "use_cache": true,
49
+ "vocab_size": 28996
50
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5971f10d90e45642e7300ef570c5ee2bbe03eecce5dfe88760b1e781055e4d4e
3
+ size 430981613
runs/Mar07_21-51-58_6e9f7706d586/1678225931.0045748/events.out.tfevents.1678225931.6e9f7706d586.146.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df224ba43406f83588f7c28a6094764e47375c8ee017668f543d7bdbb12bbea6
3
+ size 5745
runs/Mar07_21-51-58_6e9f7706d586/events.out.tfevents.1678225930.6e9f7706d586.146.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5cebc8e22dbbd5e2f33f99dbcc373c2263d07303456dd77f3421b4cedbd79bb
3
+ size 4970
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": "bert-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": "BertTokenizer",
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:5414743311ed42e1bbe7cb343d741a6d5aa6aa91abb1bf75c011db9885fb7f04
3
+ size 3515
vocab.txt ADDED
The diff for this file is too large to render. See raw diff