Training in progress, epoch 1
Browse files- config.json +15 -22
- pytorch_model.bin +2 -2
- tokenizer.json +0 -0
- tokenizer_config.json +2 -5
- training_args.bin +1 -1
- vocab.txt +0 -0
config.json
CHANGED
@@ -1,14 +1,13 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "
|
|
|
3 |
"architectures": [
|
4 |
-
"
|
5 |
],
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"hidden_dropout_prob": 0.1,
|
11 |
-
"hidden_size": 768,
|
12 |
"id2label": {
|
13 |
"0": "O",
|
14 |
"1": "B-corporation",
|
@@ -17,7 +16,6 @@
|
|
17 |
"4": "I-person"
|
18 |
},
|
19 |
"initializer_range": 0.02,
|
20 |
-
"intermediate_size": 3072,
|
21 |
"label2id": {
|
22 |
"B-corporation": 1,
|
23 |
"B-person": 3,
|
@@ -25,21 +23,16 @@
|
|
25 |
"I-person": 4,
|
26 |
"O": 0
|
27 |
},
|
28 |
-
"layer_norm_eps": 1e-12,
|
29 |
"max_position_embeddings": 512,
|
30 |
-
"model_type": "
|
31 |
-
"
|
32 |
-
"
|
33 |
"pad_token_id": 0,
|
34 |
-
"
|
35 |
-
"
|
36 |
-
"
|
37 |
-
"
|
38 |
-
"pooler_type": "first_token_transform",
|
39 |
-
"position_embedding_type": "absolute",
|
40 |
"torch_dtype": "float32",
|
41 |
"transformers_version": "4.33.2",
|
42 |
-
"
|
43 |
-
"use_cache": true,
|
44 |
-
"vocab_size": 119547
|
45 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "distilbert-base-uncased",
|
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-corporation",
|
|
|
16 |
"4": "I-person"
|
17 |
},
|
18 |
"initializer_range": 0.02,
|
|
|
19 |
"label2id": {
|
20 |
"B-corporation": 1,
|
21 |
"B-person": 3,
|
|
|
23 |
"I-person": 4,
|
24 |
"O": 0
|
25 |
},
|
|
|
26 |
"max_position_embeddings": 512,
|
27 |
+
"model_type": "distilbert",
|
28 |
+
"n_heads": 12,
|
29 |
+
"n_layers": 6,
|
30 |
"pad_token_id": 0,
|
31 |
+
"qa_dropout": 0.1,
|
32 |
+
"seq_classif_dropout": 0.2,
|
33 |
+
"sinusoidal_pos_embds": false,
|
34 |
+
"tie_weights_": true,
|
|
|
|
|
35 |
"torch_dtype": "float32",
|
36 |
"transformers_version": "4.33.2",
|
37 |
+
"vocab_size": 30522
|
|
|
|
|
38 |
}
|
pytorch_model.bin
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:04255bebfc4d7c2075fbe2d1a7357a0f123d8097d90bebe04f44cc8a5a0a8758
|
3 |
+
size 265501733
|
tokenizer.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
CHANGED
@@ -1,16 +1,13 @@
|
|
1 |
{
|
2 |
"clean_up_tokenization_spaces": true,
|
3 |
"cls_token": "[CLS]",
|
4 |
-
"
|
5 |
-
"do_lower_case": false,
|
6 |
"mask_token": "[MASK]",
|
7 |
-
"max_len": 512,
|
8 |
"model_max_length": 512,
|
9 |
-
"never_split": null,
|
10 |
"pad_token": "[PAD]",
|
11 |
"sep_token": "[SEP]",
|
12 |
"strip_accents": null,
|
13 |
"tokenize_chinese_chars": true,
|
14 |
-
"tokenizer_class": "
|
15 |
"unk_token": "[UNK]"
|
16 |
}
|
|
|
1 |
{
|
2 |
"clean_up_tokenization_spaces": true,
|
3 |
"cls_token": "[CLS]",
|
4 |
+
"do_lower_case": true,
|
|
|
5 |
"mask_token": "[MASK]",
|
|
|
6 |
"model_max_length": 512,
|
|
|
7 |
"pad_token": "[PAD]",
|
8 |
"sep_token": "[SEP]",
|
9 |
"strip_accents": null,
|
10 |
"tokenize_chinese_chars": true,
|
11 |
+
"tokenizer_class": "DistilBertTokenizer",
|
12 |
"unk_token": "[UNK]"
|
13 |
}
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 4027
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:33bf887705d433d12e536dd9b4b12e06c73d4960fc9bfa755b6495a55f261a2f
|
3 |
size 4027
|
vocab.txt
CHANGED
The diff for this file is too large to render.
See raw diff
|
|