jmLuis commited on
Commit
a63fdc5
1 Parent(s): 1081a35

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-cased",
3
+ "architectures": [
4
+ "BertForSequenceClassification"
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": 0,
14
+ "1": 1,
15
+ "2": 2,
16
+ "3": 3,
17
+ "4": 4,
18
+ "5": 5,
19
+ "6": 6,
20
+ "7": 7,
21
+ "8": 8,
22
+ "9": 9,
23
+ "10": 10,
24
+ "11": 11,
25
+ "12": 12,
26
+ "13": 13,
27
+ "14": 14
28
+ },
29
+ "initializer_range": 0.02,
30
+ "intermediate_size": 3072,
31
+ "label2id": {
32
+ "0": 0,
33
+ "1": 1,
34
+ "2": 2,
35
+ "3": 3,
36
+ "4": 4,
37
+ "5": 5,
38
+ "6": 6,
39
+ "7": 7,
40
+ "8": 8,
41
+ "9": 9,
42
+ "10": 10,
43
+ "11": 11,
44
+ "12": 12,
45
+ "13": 13,
46
+ "14": 14
47
+ },
48
+ "layer_norm_eps": 1e-12,
49
+ "max_position_embeddings": 512,
50
+ "model_type": "bert",
51
+ "num_attention_heads": 12,
52
+ "num_hidden_layers": 12,
53
+ "pad_token_id": 0,
54
+ "position_embedding_type": "absolute",
55
+ "problem_type": "single_label_classification",
56
+ "torch_dtype": "float32",
57
+ "transformers_version": "4.28.0",
58
+ "type_vocab_size": 2,
59
+ "use_cache": true,
60
+ "vocab_size": 28996
61
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6967794e98b321d217eb60c093ecd4a33595e4ba5770261447ecc992a9c13131
3
+ size 433360053
runs/Sep11_03-52-14_eea3ff7a4b6b/1694404339.7865152/events.out.tfevents.1694404339.eea3ff7a4b6b.5188.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce1913a7de42df0479941bdb7f0005b37e63f214ca8bfe753a4ad95f91cd4b04
3
+ size 5882
runs/Sep11_03-52-14_eea3ff7a4b6b/events.out.tfevents.1694404339.eea3ff7a4b6b.5188.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb73d34d879f784f1c3476b7729c431c885f3f90f68d77d3b2d18db14139a1de
3
+ size 4730
runs/Sep11_04-07-41_eea3ff7a4b6b/1694405264.9084935/events.out.tfevents.1694405264.eea3ff7a4b6b.5188.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41a2f59856015f623fc003dcc8cd32680dd8c45e65fc8160486fca97f98357bc
3
+ size 5882
runs/Sep11_04-07-41_eea3ff7a4b6b/events.out.tfevents.1694405264.eea3ff7a4b6b.5188.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e11c691cdbf2d60df9264a4ed23c98e9f23c5a589adce85b359098bdd644b58d
3
+ size 5198
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,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": false,
5
+ "mask_token": "[MASK]",
6
+ "model_max_length": 512,
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "BertTokenizer",
12
+ "unk_token": "[UNK]"
13
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce028bcbe6b9e7c0e5b19ee7b710efcd00a777f14007f6308c5b4764df804643
3
+ size 3579
vocab.txt ADDED
The diff for this file is too large to render. See raw diff