Azure-Heights commited on
Commit
f6fc48b
1 Parent(s): 55e9ad8

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-uncased",
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": "O",
14
+ "1": "-",
15
+ "2": "B-archetype",
16
+ "3": "B-card",
17
+ "4": "B-deck",
18
+ "5": "B-event",
19
+ "6": "B-format",
20
+ "7": "B-game",
21
+ "8": "B-keyword",
22
+ "9": "B-object",
23
+ "10": "B-person",
24
+ "11": "B-pool",
25
+ "12": "B-set",
26
+ "13": "B-type",
27
+ "14": "I-archetype",
28
+ "15": "I-card",
29
+ "16": "I-deck",
30
+ "17": "I-event",
31
+ "18": "I-format",
32
+ "19": "I-game",
33
+ "20": "I-keyword",
34
+ "21": "I-object",
35
+ "22": "I-person",
36
+ "23": "I-pool",
37
+ "24": "I-set",
38
+ "25": "I-type"
39
+ },
40
+ "initializer_range": 0.02,
41
+ "intermediate_size": 3072,
42
+ "label2id": {
43
+ "-": 1,
44
+ "B-archetype": 2,
45
+ "B-card": 3,
46
+ "B-deck": 4,
47
+ "B-event": 5,
48
+ "B-format": 6,
49
+ "B-game": 7,
50
+ "B-keyword": 8,
51
+ "B-object": 9,
52
+ "B-person": 10,
53
+ "B-pool": 11,
54
+ "B-set": 12,
55
+ "B-type": 13,
56
+ "I-archetype": 14,
57
+ "I-card": 15,
58
+ "I-deck": 16,
59
+ "I-event": 17,
60
+ "I-format": 18,
61
+ "I-game": 19,
62
+ "I-keyword": 20,
63
+ "I-object": 21,
64
+ "I-person": 22,
65
+ "I-pool": 23,
66
+ "I-set": 24,
67
+ "I-type": 25,
68
+ "O": 0
69
+ },
70
+ "layer_norm_eps": 1e-12,
71
+ "max_position_embeddings": 512,
72
+ "model_type": "bert",
73
+ "num_attention_heads": 12,
74
+ "num_hidden_layers": 12,
75
+ "pad_token_id": 0,
76
+ "position_embedding_type": "absolute",
77
+ "torch_dtype": "float32",
78
+ "transformers_version": "4.35.2",
79
+ "type_vocab_size": 2,
80
+ "use_cache": true,
81
+ "vocab_size": 30522
82
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48f4ac5481131825793f66fa46b13a692c12c0cea45eca8a917f3dd556f28735
3
+ size 435669912
runs/Dec18_18-43-05_0da02a83500a/events.out.tfevents.1702924986.0da02a83500a.433.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc4a550a1c7f98489f78f2b33c78379dcfd803b80a03cebc946b4fea7f0aaca1
3
+ size 5714
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,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_lower_case": true,
47
+ "mask_token": "[MASK]",
48
+ "model_max_length": 512,
49
+ "pad_token": "[PAD]",
50
+ "sep_token": "[SEP]",
51
+ "strip_accents": null,
52
+ "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "BertTokenizer",
54
+ "unk_token": "[UNK]"
55
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:16cb5d459b026e38d5d70d8dbc505c6adb11e7d18e92582846f4f32a86b2c8a8
3
+ size 4600
vocab.txt ADDED
The diff for this file is too large to render. See raw diff