harsh13333
commited on
Commit
•
feb5bec
1
Parent(s):
3da5e9f
Training in progress, epoch 1
Browse files- config.json +37 -44
- model.safetensors +2 -2
- runs/Mar27_05-22-59_4912d2a8deb3/events.out.tfevents.1711516984.4912d2a8deb3.761.0 +3 -0
- special_tokens_map.json +5 -13
- tokenizer.json +2 -2
- tokenizer_config.json +19 -18
- training_args.bin +1 -1
- vocab.txt +0 -0
config.json
CHANGED
@@ -1,62 +1,55 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "
|
|
|
3 |
"architectures": [
|
4 |
-
"
|
5 |
],
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"hidden_act": "gelu",
|
11 |
-
"hidden_dropout_prob": 0.1,
|
12 |
-
"hidden_size": 1024,
|
13 |
"id2label": {
|
14 |
"0": "O",
|
15 |
-
"1": "B-
|
16 |
-
"2": "I-
|
17 |
-
"3": "B-
|
18 |
-
"4": "I-
|
19 |
-
"5": "B-
|
20 |
-
"6": "I-
|
21 |
-
"7": "B-
|
22 |
-
"8": "I-
|
23 |
"9": "B-LOCATION",
|
24 |
"10": "I-LOCATION",
|
25 |
-
"11": "B-
|
26 |
-
"12": "I-
|
27 |
-
"13": "B-BARCODE",
|
28 |
-
"14": "I-BARCODE"
|
29 |
},
|
30 |
"initializer_range": 0.02,
|
31 |
-
"intermediate_size": 4096,
|
32 |
"label2id": {
|
33 |
-
"B-
|
34 |
-
"B-
|
35 |
-
"B-
|
36 |
-
"B-GCNUM": 1,
|
37 |
"B-LOCATION": 9,
|
38 |
-
"B-NAME":
|
39 |
-
"B-ORG":
|
40 |
-
"I-
|
41 |
-
"I-
|
42 |
-
"I-
|
43 |
-
"I-GCNUM": 2,
|
44 |
"I-LOCATION": 10,
|
45 |
-
"I-NAME":
|
46 |
-
"I-ORG":
|
47 |
"O": 0
|
48 |
},
|
49 |
-
"
|
50 |
-
"
|
51 |
-
"
|
52 |
-
"
|
53 |
-
"num_hidden_layers": 24,
|
54 |
"output_past": true,
|
55 |
-
"pad_token_id":
|
56 |
-
"
|
|
|
|
|
|
|
57 |
"torch_dtype": "float32",
|
58 |
"transformers_version": "4.39.1",
|
59 |
-
"
|
60 |
-
"use_cache": true,
|
61 |
-
"vocab_size": 250002
|
62 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "distilbert-base-cased",
|
3 |
+
"activation": "gelu",
|
4 |
"architectures": [
|
5 |
+
"DistilBertForTokenClassification"
|
6 |
],
|
7 |
+
"attention_dropout": 0.1,
|
8 |
+
"dim": 768,
|
9 |
+
"dropout": 0.1,
|
10 |
+
"hidden_dim": 3072,
|
|
|
|
|
|
|
11 |
"id2label": {
|
12 |
"0": "O",
|
13 |
+
"1": "B-ORG",
|
14 |
+
"2": "I-ORG",
|
15 |
+
"3": "B-GCNUMBER",
|
16 |
+
"4": "I-GCNUMBER",
|
17 |
+
"5": "B-BGNUMBER",
|
18 |
+
"6": "I-BGNUMBER",
|
19 |
+
"7": "B-NAME",
|
20 |
+
"8": "I-NAME",
|
21 |
"9": "B-LOCATION",
|
22 |
"10": "I-LOCATION",
|
23 |
+
"11": "B-COUNTRY",
|
24 |
+
"12": "I-COUNTRY"
|
|
|
|
|
25 |
},
|
26 |
"initializer_range": 0.02,
|
|
|
27 |
"label2id": {
|
28 |
+
"B-BGNUMBER": 5,
|
29 |
+
"B-COUNTRY": 11,
|
30 |
+
"B-GCNUMBER": 3,
|
|
|
31 |
"B-LOCATION": 9,
|
32 |
+
"B-NAME": 7,
|
33 |
+
"B-ORG": 1,
|
34 |
+
"I-BGNUMBER": 6,
|
35 |
+
"I-COUNTRY": 12,
|
36 |
+
"I-GCNUMBER": 4,
|
|
|
37 |
"I-LOCATION": 10,
|
38 |
+
"I-NAME": 8,
|
39 |
+
"I-ORG": 2,
|
40 |
"O": 0
|
41 |
},
|
42 |
+
"max_position_embeddings": 512,
|
43 |
+
"model_type": "distilbert",
|
44 |
+
"n_heads": 12,
|
45 |
+
"n_layers": 6,
|
|
|
46 |
"output_past": true,
|
47 |
+
"pad_token_id": 0,
|
48 |
+
"qa_dropout": 0.1,
|
49 |
+
"seq_classif_dropout": 0.2,
|
50 |
+
"sinusoidal_pos_embds": false,
|
51 |
+
"tie_weights_": true,
|
52 |
"torch_dtype": "float32",
|
53 |
"transformers_version": "4.39.1",
|
54 |
+
"vocab_size": 28996
|
|
|
|
|
55 |
}
|
model.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bc48b79aa22f8d405344b4b84be18703be0c91b08a4469d0190befecc6fee07c
|
3 |
+
size 260815972
|
runs/Mar27_05-22-59_4912d2a8deb3/events.out.tfevents.1711516984.4912d2a8deb3.761.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ba3dd9319afb0e303dd235e8937de30130f9cb2b7516dacf601b2e6c59a0f6d1
|
3 |
+
size 5974
|
special_tokens_map.json
CHANGED
@@ -1,15 +1,7 @@
|
|
1 |
{
|
2 |
-
"
|
3 |
-
"
|
4 |
-
"
|
5 |
-
"
|
6 |
-
|
7 |
-
"lstrip": true,
|
8 |
-
"normalized": false,
|
9 |
-
"rstrip": false,
|
10 |
-
"single_word": false
|
11 |
-
},
|
12 |
-
"pad_token": "<pad>",
|
13 |
-
"sep_token": "</s>",
|
14 |
-
"unk_token": "<unk>"
|
15 |
}
|
|
|
1 |
{
|
2 |
+
"cls_token": "[CLS]",
|
3 |
+
"mask_token": "[MASK]",
|
4 |
+
"pad_token": "[PAD]",
|
5 |
+
"sep_token": "[SEP]",
|
6 |
+
"unk_token": "[UNK]"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
}
|
tokenizer.json
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cb26b43c98e8266ae3e99c2a583cf8315d73b33a17e6b20b4df7ff1f22392d34
|
3 |
+
size 669021
|
tokenizer_config.json
CHANGED
@@ -1,54 +1,55 @@
|
|
1 |
{
|
2 |
"added_tokens_decoder": {
|
3 |
"0": {
|
4 |
-
"content": "
|
5 |
"lstrip": false,
|
6 |
"normalized": false,
|
7 |
"rstrip": false,
|
8 |
"single_word": false,
|
9 |
"special": true
|
10 |
},
|
11 |
-
"
|
12 |
-
"content": "
|
13 |
"lstrip": false,
|
14 |
"normalized": false,
|
15 |
"rstrip": false,
|
16 |
"single_word": false,
|
17 |
"special": true
|
18 |
},
|
19 |
-
"
|
20 |
-
"content": "
|
21 |
"lstrip": false,
|
22 |
"normalized": false,
|
23 |
"rstrip": false,
|
24 |
"single_word": false,
|
25 |
"special": true
|
26 |
},
|
27 |
-
"
|
28 |
-
"content": "
|
29 |
"lstrip": false,
|
30 |
"normalized": false,
|
31 |
"rstrip": false,
|
32 |
"single_word": false,
|
33 |
"special": true
|
34 |
},
|
35 |
-
"
|
36 |
-
"content": "
|
37 |
-
"lstrip":
|
38 |
"normalized": false,
|
39 |
"rstrip": false,
|
40 |
"single_word": false,
|
41 |
"special": true
|
42 |
}
|
43 |
},
|
44 |
-
"bos_token": "<s>",
|
45 |
"clean_up_tokenization_spaces": true,
|
46 |
-
"cls_token": "
|
47 |
-
"
|
48 |
-
"mask_token": "
|
49 |
"model_max_length": 512,
|
50 |
-
"pad_token": "
|
51 |
-
"sep_token": "
|
52 |
-
"
|
53 |
-
"
|
|
|
|
|
54 |
}
|
|
|
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": false,
|
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": "DistilBertTokenizer",
|
54 |
+
"unk_token": "[UNK]"
|
55 |
}
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 4920
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ad9161d8770180991aa7b1b25e04dd570f1f8c61cfc32d52b3387bd2b0e45920
|
3 |
size 4920
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|