ekaterinatao
commited on
Commit
•
3d36cbd
1
Parent(s):
edbb67f
Training in progress, epoch 1
Browse files- config.json +14 -21
- model.safetensors +2 -2
- tokenizer.json +0 -0
- tokenizer_config.json +3 -5
- training_args.bin +1 -1
- vocab.txt +0 -0
config.json
CHANGED
@@ -1,41 +1,34 @@
|
|
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": "NEGATIVE",
|
14 |
"1": "POSITIVE"
|
15 |
},
|
16 |
"initializer_range": 0.02,
|
17 |
-
"intermediate_size": 3072,
|
18 |
"label2id": {
|
19 |
"NEGATIVE": 0,
|
20 |
"POSITIVE": 1
|
21 |
},
|
22 |
-
"layer_norm_eps": 1e-12,
|
23 |
"max_position_embeddings": 512,
|
24 |
-
"model_type": "
|
25 |
-
"
|
26 |
-
"
|
27 |
"output_past": true,
|
28 |
"pad_token_id": 0,
|
29 |
-
"pooler_fc_size": 768,
|
30 |
-
"pooler_num_attention_heads": 12,
|
31 |
-
"pooler_num_fc_layers": 3,
|
32 |
-
"pooler_size_per_head": 128,
|
33 |
-
"pooler_type": "first_token_transform",
|
34 |
-
"position_embedding_type": "absolute",
|
35 |
"problem_type": "single_label_classification",
|
|
|
|
|
|
|
|
|
36 |
"torch_dtype": "float32",
|
37 |
"transformers_version": "4.42.4",
|
38 |
-
"type_vocab_size": 2,
|
39 |
-
"use_cache": true,
|
40 |
"vocab_size": 119547
|
41 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "distilbert/distilbert-base-multilingual-cased",
|
3 |
+
"activation": "gelu",
|
4 |
"architectures": [
|
5 |
+
"DistilBertForSequenceClassification"
|
6 |
],
|
7 |
+
"attention_dropout": 0.1,
|
8 |
+
"dim": 768,
|
9 |
+
"dropout": 0.1,
|
10 |
+
"hidden_dim": 3072,
|
|
|
|
|
11 |
"id2label": {
|
12 |
"0": "NEGATIVE",
|
13 |
"1": "POSITIVE"
|
14 |
},
|
15 |
"initializer_range": 0.02,
|
|
|
16 |
"label2id": {
|
17 |
"NEGATIVE": 0,
|
18 |
"POSITIVE": 1
|
19 |
},
|
|
|
20 |
"max_position_embeddings": 512,
|
21 |
+
"model_type": "distilbert",
|
22 |
+
"n_heads": 12,
|
23 |
+
"n_layers": 6,
|
24 |
"output_past": true,
|
25 |
"pad_token_id": 0,
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
"problem_type": "single_label_classification",
|
27 |
+
"qa_dropout": 0.1,
|
28 |
+
"seq_classif_dropout": 0.2,
|
29 |
+
"sinusoidal_pos_embds": false,
|
30 |
+
"tie_weights_": true,
|
31 |
"torch_dtype": "float32",
|
32 |
"transformers_version": "4.42.4",
|
|
|
|
|
33 |
"vocab_size": 119547
|
34 |
}
|
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:c68432d325a323a57c82f8cef903a6a8ede4c0a34107f337b8b8e4c30129ac8f
|
3 |
+
size 541317368
|
tokenizer.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
CHANGED
@@ -43,17 +43,15 @@
|
|
43 |
},
|
44 |
"clean_up_tokenization_spaces": true,
|
45 |
"cls_token": "[CLS]",
|
46 |
-
"do_basic_tokenize": true,
|
47 |
"do_lower_case": false,
|
48 |
"mask_token": "[MASK]",
|
49 |
-
"max_length":
|
50 |
-
"model_max_length":
|
51 |
-
"never_split": null,
|
52 |
"pad_token": "[PAD]",
|
53 |
"sep_token": "[SEP]",
|
54 |
"strip_accents": null,
|
55 |
"tokenize_chinese_chars": true,
|
56 |
-
"tokenizer_class": "
|
57 |
"truncation": true,
|
58 |
"unk_token": "[UNK]"
|
59 |
}
|
|
|
43 |
},
|
44 |
"clean_up_tokenization_spaces": true,
|
45 |
"cls_token": "[CLS]",
|
|
|
46 |
"do_lower_case": false,
|
47 |
"mask_token": "[MASK]",
|
48 |
+
"max_length": 256,
|
49 |
+
"model_max_length": 512,
|
|
|
50 |
"pad_token": "[PAD]",
|
51 |
"sep_token": "[SEP]",
|
52 |
"strip_accents": null,
|
53 |
"tokenize_chinese_chars": true,
|
54 |
+
"tokenizer_class": "DistilBertTokenizer",
|
55 |
"truncation": true,
|
56 |
"unk_token": "[UNK]"
|
57 |
}
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 5176
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3fa8db6b26f62d53725a46372fc5ee9c6fd0ed41906a5f2a8eda1646d3201fda
|
3 |
size 5176
|
vocab.txt
CHANGED
The diff for this file is too large to render.
See raw diff
|
|