ML-GOD commited on
Commit
b788297
1 Parent(s): d5cfcdc

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/deberta-base",
3
+ "architectures": [
4
+ "DebertaForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "hidden_act": "gelu",
8
+ "hidden_dropout_prob": 0.1,
9
+ "hidden_size": 768,
10
+ "id2label": {
11
+ "0": "B-CTRY",
12
+ "1": "B-NBHD",
13
+ "2": "B-HPOI",
14
+ "3": "I-DIST",
15
+ "4": "I-CNTY",
16
+ "5": "U-STAT",
17
+ "6": "L-DIST",
18
+ "7": "B-ST",
19
+ "8": "I-OTHR",
20
+ "9": "L-HPOI",
21
+ "10": "L-OTHR",
22
+ "11": "I-NPOI",
23
+ "12": "L-CNTY",
24
+ "13": "L-NBHD",
25
+ "14": "B-CITY",
26
+ "15": "I-NBHD",
27
+ "16": "L-CITY",
28
+ "17": "B-OTHR",
29
+ "18": "I-HPOI",
30
+ "19": "U-OTHR",
31
+ "20": "B-CONT",
32
+ "21": "I-CTRY",
33
+ "22": "I-CITY",
34
+ "23": "O",
35
+ "24": "U-HPOI",
36
+ "25": "B-STAT",
37
+ "26": "B-NPOI",
38
+ "27": "U-ST",
39
+ "28": "U-NPOI",
40
+ "29": "L-CONT",
41
+ "30": "U-CNTY",
42
+ "31": "U-DIST",
43
+ "32": "B-ISL",
44
+ "33": "U-ISL",
45
+ "34": "L-ST",
46
+ "35": "U-CTRY",
47
+ "36": "U-NBHD",
48
+ "37": "I-ST",
49
+ "38": "L-CTRY",
50
+ "39": "I-STAT",
51
+ "40": "B-CNTY",
52
+ "41": "U-CONT",
53
+ "42": "L-NPOI",
54
+ "43": "L-STAT",
55
+ "44": "B-DIST",
56
+ "45": "L-ISL",
57
+ "46": "I-ISL",
58
+ "47": "U-CITY"
59
+ },
60
+ "initializer_range": 0.02,
61
+ "intermediate_size": 3072,
62
+ "label2id": {
63
+ "B-CITY": 14,
64
+ "B-CNTY": 40,
65
+ "B-CONT": 20,
66
+ "B-CTRY": 0,
67
+ "B-DIST": 44,
68
+ "B-HPOI": 2,
69
+ "B-ISL": 32,
70
+ "B-NBHD": 1,
71
+ "B-NPOI": 26,
72
+ "B-OTHR": 17,
73
+ "B-ST": 7,
74
+ "B-STAT": 25,
75
+ "I-CITY": 22,
76
+ "I-CNTY": 4,
77
+ "I-CTRY": 21,
78
+ "I-DIST": 3,
79
+ "I-HPOI": 18,
80
+ "I-ISL": 46,
81
+ "I-NBHD": 15,
82
+ "I-NPOI": 11,
83
+ "I-OTHR": 8,
84
+ "I-ST": 37,
85
+ "I-STAT": 39,
86
+ "L-CITY": 16,
87
+ "L-CNTY": 12,
88
+ "L-CONT": 29,
89
+ "L-CTRY": 38,
90
+ "L-DIST": 6,
91
+ "L-HPOI": 9,
92
+ "L-ISL": 45,
93
+ "L-NBHD": 13,
94
+ "L-NPOI": 42,
95
+ "L-OTHR": 10,
96
+ "L-ST": 34,
97
+ "L-STAT": 43,
98
+ "O": 23,
99
+ "U-CITY": 47,
100
+ "U-CNTY": 30,
101
+ "U-CONT": 41,
102
+ "U-CTRY": 35,
103
+ "U-DIST": 31,
104
+ "U-HPOI": 24,
105
+ "U-ISL": 33,
106
+ "U-NBHD": 36,
107
+ "U-NPOI": 28,
108
+ "U-OTHR": 19,
109
+ "U-ST": 27,
110
+ "U-STAT": 5
111
+ },
112
+ "layer_norm_eps": 1e-07,
113
+ "max_position_embeddings": 512,
114
+ "max_relative_positions": -1,
115
+ "model_type": "deberta",
116
+ "num_attention_heads": 12,
117
+ "num_hidden_layers": 12,
118
+ "pad_token_id": 0,
119
+ "pooler_dropout": 0,
120
+ "pooler_hidden_act": "gelu",
121
+ "pooler_hidden_size": 768,
122
+ "pos_att_type": [
123
+ "c2p",
124
+ "p2c"
125
+ ],
126
+ "position_biased_input": false,
127
+ "relative_attention": true,
128
+ "torch_dtype": "float32",
129
+ "transformers_version": "4.42.3",
130
+ "type_vocab_size": 0,
131
+ "vocab_size": 50265
132
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:263dc5e0e0da777b12258c5d9ee0b43c5a55b9273d15e4f61f50c3c7c6cda5de
3
+ size 554578528
runs/Jul24_18-43-14_19a0ded28536/events.out.tfevents.1721846602.19a0ded28536.34.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ffe779879dd9db907c15453fa7bba4216cb719b0331f12abc8afef3f82ed1b48
3
+ size 7411
runs/Jul24_18-43-14_19a0ded28536/events.out.tfevents.1721847036.19a0ded28536.34.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55165a73b57916da4aa2563020550d3430fabcff75165c950243e5f38322e558
3
+ size 7883
special_tokens_map.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "[CLS]",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "cls_token": {
10
+ "content": "[CLS]",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "eos_token": {
17
+ "content": "[SEP]",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "mask_token": {
24
+ "content": "[MASK]",
25
+ "lstrip": true,
26
+ "normalized": true,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ },
30
+ "pad_token": {
31
+ "content": "[PAD]",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false
36
+ },
37
+ "sep_token": {
38
+ "content": "[SEP]",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false
43
+ },
44
+ "unk_token": {
45
+ "content": "[UNK]",
46
+ "lstrip": false,
47
+ "normalized": false,
48
+ "rstrip": false,
49
+ "single_word": false
50
+ }
51
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": true,
4
+ "added_tokens_decoder": {
5
+ "0": {
6
+ "content": "[PAD]",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "1": {
14
+ "content": "[CLS]",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "2": {
22
+ "content": "[SEP]",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "3": {
30
+ "content": "[UNK]",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "50264": {
38
+ "content": "[MASK]",
39
+ "lstrip": true,
40
+ "normalized": true,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ }
45
+ },
46
+ "bos_token": "[CLS]",
47
+ "clean_up_tokenization_spaces": true,
48
+ "cls_token": "[CLS]",
49
+ "do_lower_case": false,
50
+ "eos_token": "[SEP]",
51
+ "errors": "replace",
52
+ "mask_token": "[MASK]",
53
+ "model_max_length": 1000000000000000019884624838656,
54
+ "pad_token": "[PAD]",
55
+ "sep_token": "[SEP]",
56
+ "tokenizer_class": "DebertaTokenizer",
57
+ "unk_token": "[UNK]",
58
+ "vocab_type": "gpt2"
59
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6405ad282185deb6e4ae11230cd4c03865c002e587fc1de1d1bd393d8454701b
3
+ size 5176
vocab.json ADDED
The diff for this file is too large to render. See raw diff