ViktorDo commited on
Commit
9b79b45
·
1 Parent(s): feef95d

Training in progress, step 500

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "allenai/scibert_scivocab_uncased",
3
+ "architectures": [
4
+ "BertForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 768,
11
+ "id2label": {
12
+ "0": "LABEL_0",
13
+ "1": "LABEL_1",
14
+ "2": "LABEL_2"
15
+ },
16
+ "initializer_range": 0.02,
17
+ "intermediate_size": 3072,
18
+ "label2id": {
19
+ "LABEL_0": 0,
20
+ "LABEL_1": 1,
21
+ "LABEL_2": 2
22
+ },
23
+ "layer_norm_eps": 1e-12,
24
+ "max_position_embeddings": 512,
25
+ "model_type": "bert",
26
+ "num_attention_heads": 12,
27
+ "num_hidden_layers": 12,
28
+ "pad_token_id": 0,
29
+ "position_embedding_type": "absolute",
30
+ "problem_type": "single_label_classification",
31
+ "torch_dtype": "float32",
32
+ "transformers_version": "4.23.1",
33
+ "type_vocab_size": 2,
34
+ "use_cache": true,
35
+ "vocab_size": 31090
36
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a23c72b0d3190f141b2b127215ad365d88b17249a4b0676e86413b08f1204bff
3
+ size 439754093
runs/Oct23_17-45-02_952c6f2a489f/1666547115.6601534/events.out.tfevents.1666547115.952c6f2a489f.74.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f1859e5e8bed887538fd867e567e9d4bc513202a906ef9351dcab11185cfa4e
3
+ size 5520
runs/Oct23_17-45-02_952c6f2a489f/events.out.tfevents.1666547115.952c6f2a489f.74.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:15fedb8615cc72f2c34ac5c25c31622a1c26ee9b41384f97cd3d0ac6e2628b45
3
+ size 3833
runs/Oct23_17-54-18_952c6f2a489f/1666547662.7789395/events.out.tfevents.1666547662.952c6f2a489f.74.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8bed88dab41f51e4e51c245f510e25480e59b004204acfc930d63fe4fa2a80a1
3
+ size 5520
runs/Oct23_17-54-18_952c6f2a489f/events.out.tfevents.1666547662.952c6f2a489f.74.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6400160816bd8ec151d1e7a8aee77bd06eb7904fb6d505042b96f1982f8fb010
3
+ size 3833
runs/Oct23_18-04-00_952c6f2a489f/1666548245.2088675/events.out.tfevents.1666548245.952c6f2a489f.74.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8125238a971cd1f0b76ea2707b2c1094d1198ddeb4209f8feb7c11baed0913f2
3
+ size 5520
runs/Oct23_18-04-00_952c6f2a489f/events.out.tfevents.1666548245.952c6f2a489f.74.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d26b72a2f4660a8832bf217377cd4bc9a9a2c0f7d2f6a6a8293a95ad3accd884
3
+ size 3990
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,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_basic_tokenize": true,
4
+ "do_lower_case": true,
5
+ "mask_token": "[MASK]",
6
+ "name_or_path": "allenai/scibert_scivocab_uncased",
7
+ "never_split": null,
8
+ "pad_token": "[PAD]",
9
+ "sep_token": "[SEP]",
10
+ "special_tokens_map_file": null,
11
+ "strip_accents": null,
12
+ "tokenize_chinese_chars": true,
13
+ "tokenizer_class": "BertTokenizer",
14
+ "unk_token": "[UNK]"
15
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f42733b6107f65805028978dec3ec188885dfec3a7de31a6b7e6d7a431a4139
3
+ size 3439
vocab.txt ADDED
The diff for this file is too large to render. See raw diff