vbhasin commited on
Commit
dc8c431
1 Parent(s): 0ae845f

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "allenai/scibert_scivocab_cased",
3
+ "architectures": [
4
+ "BertForTokenClassification"
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": "O",
13
+ "1": "X",
14
+ "2": "B-MethodName",
15
+ "3": "I-MethodName",
16
+ "4": "B-HyperparameterName",
17
+ "5": "I-HyperparameterName",
18
+ "6": "B-HyperparameterValue",
19
+ "7": "I-HyperparameterValue",
20
+ "8": "B-MetricName",
21
+ "9": "I-MetricName",
22
+ "10": "B-MetricValue",
23
+ "11": "I-MetricValue",
24
+ "12": "B-TaskName",
25
+ "13": "I-TaskName",
26
+ "14": "B-DatasetName",
27
+ "15": "I-DatasetName"
28
+ },
29
+ "initializer_range": 0.02,
30
+ "intermediate_size": 3072,
31
+ "label2id": {
32
+ "B-DatasetName": 14,
33
+ "B-HyperparameterName": 4,
34
+ "B-HyperparameterValue": 6,
35
+ "B-MethodName": 2,
36
+ "B-MetricName": 8,
37
+ "B-MetricValue": 10,
38
+ "B-TaskName": 12,
39
+ "I-DatasetName": 15,
40
+ "I-HyperparameterName": 5,
41
+ "I-HyperparameterValue": 7,
42
+ "I-MethodName": 3,
43
+ "I-MetricName": 9,
44
+ "I-MetricValue": 11,
45
+ "I-TaskName": 13,
46
+ "O": 0,
47
+ "X": 1
48
+ },
49
+ "layer_norm_eps": 1e-12,
50
+ "max_position_embeddings": 512,
51
+ "model_type": "bert",
52
+ "num_attention_heads": 12,
53
+ "num_hidden_layers": 12,
54
+ "pad_token_id": 0,
55
+ "position_embedding_type": "absolute",
56
+ "torch_dtype": "float32",
57
+ "transformers_version": "4.34.1",
58
+ "type_vocab_size": 2,
59
+ "use_cache": true,
60
+ "vocab_size": 31116
61
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:664b84511bcc26e1cb92615e785af3582782b8817aeb23a6df06cd4f21dde75c
3
+ size 437508774
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,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_basic_tokenize": true,
47
+ "do_lower_case": true,
48
+ "mask_token": "[MASK]",
49
+ "model_max_length": 1000000000000000019884624838656,
50
+ "never_split": null,
51
+ "pad_token": "[PAD]",
52
+ "sep_token": "[SEP]",
53
+ "strip_accents": null,
54
+ "tokenize_chinese_chars": true,
55
+ "tokenizer_class": "BertTokenizer",
56
+ "unk_token": "[UNK]"
57
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fae78e21718d93d74053d764b5a3d191e1b4a1ab621506f9ba09ff93bd515d45
3
+ size 4536
vocab.txt ADDED
The diff for this file is too large to render. See raw diff