Training in progress, epoch 1
Browse files- config.json +14 -16
- model.safetensors +2 -2
- special_tokens_map.json +5 -35
- tokenizer.json +2 -11
- tokenizer_config.json +1 -10
- training_args.bin +1 -1
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": 384,
|
12 |
"id2label": {
|
13 |
"0": "0_not_relevant",
|
14 |
"1": "1_not_happening",
|
@@ -20,7 +19,6 @@
|
|
20 |
"7": "7_fossil_fuels_needed"
|
21 |
},
|
22 |
"initializer_range": 0.02,
|
23 |
-
"intermediate_size": 1536,
|
24 |
"label2id": {
|
25 |
"0_not_relevant": 0,
|
26 |
"1_not_happening": 1,
|
@@ -31,17 +29,17 @@
|
|
31 |
"6_proponents_biased": 6,
|
32 |
"7_fossil_fuels_needed": 7
|
33 |
},
|
34 |
-
"layer_norm_eps": 1e-12,
|
35 |
"max_position_embeddings": 512,
|
36 |
-
"model_type": "
|
37 |
-
"
|
38 |
-
"
|
39 |
"pad_token_id": 0,
|
40 |
-
"position_embedding_type": "absolute",
|
41 |
"problem_type": "single_label_classification",
|
|
|
|
|
|
|
|
|
42 |
"torch_dtype": "float32",
|
43 |
"transformers_version": "4.48.2",
|
44 |
-
"type_vocab_size": 2,
|
45 |
-
"use_cache": true,
|
46 |
"vocab_size": 30522
|
47 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "distilbert-base-uncased",
|
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": "0_not_relevant",
|
13 |
"1": "1_not_happening",
|
|
|
19 |
"7": "7_fossil_fuels_needed"
|
20 |
},
|
21 |
"initializer_range": 0.02,
|
|
|
22 |
"label2id": {
|
23 |
"0_not_relevant": 0,
|
24 |
"1_not_happening": 1,
|
|
|
29 |
"6_proponents_biased": 6,
|
30 |
"7_fossil_fuels_needed": 7
|
31 |
},
|
|
|
32 |
"max_position_embeddings": 512,
|
33 |
+
"model_type": "distilbert",
|
34 |
+
"n_heads": 12,
|
35 |
+
"n_layers": 6,
|
36 |
"pad_token_id": 0,
|
|
|
37 |
"problem_type": "single_label_classification",
|
38 |
+
"qa_dropout": 0.1,
|
39 |
+
"seq_classif_dropout": 0.2,
|
40 |
+
"sinusoidal_pos_embds": false,
|
41 |
+
"tie_weights_": true,
|
42 |
"torch_dtype": "float32",
|
43 |
"transformers_version": "4.48.2",
|
|
|
|
|
44 |
"vocab_size": 30522
|
45 |
}
|
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:3e5c90d0d1b4bd9827645cf2c4444e8c26772f88aba7b1144a5ead7008b8e38f
|
3 |
+
size 267851024
|
special_tokens_map.json
CHANGED
@@ -1,37 +1,7 @@
|
|
1 |
{
|
2 |
-
"cls_token":
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
"single_word": false
|
8 |
-
},
|
9 |
-
"mask_token": {
|
10 |
-
"content": "[MASK]",
|
11 |
-
"lstrip": false,
|
12 |
-
"normalized": false,
|
13 |
-
"rstrip": false,
|
14 |
-
"single_word": false
|
15 |
-
},
|
16 |
-
"pad_token": {
|
17 |
-
"content": "[PAD]",
|
18 |
-
"lstrip": false,
|
19 |
-
"normalized": false,
|
20 |
-
"rstrip": false,
|
21 |
-
"single_word": false
|
22 |
-
},
|
23 |
-
"sep_token": {
|
24 |
-
"content": "[SEP]",
|
25 |
-
"lstrip": false,
|
26 |
-
"normalized": false,
|
27 |
-
"rstrip": false,
|
28 |
-
"single_word": false
|
29 |
-
},
|
30 |
-
"unk_token": {
|
31 |
-
"content": "[UNK]",
|
32 |
-
"lstrip": false,
|
33 |
-
"normalized": false,
|
34 |
-
"rstrip": false,
|
35 |
-
"single_word": false
|
36 |
-
}
|
37 |
}
|
|
|
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
@@ -2,20 +2,11 @@
|
|
2 |
"version": "1.0",
|
3 |
"truncation": {
|
4 |
"direction": "Right",
|
5 |
-
"max_length":
|
6 |
"strategy": "LongestFirst",
|
7 |
"stride": 0
|
8 |
},
|
9 |
-
"padding":
|
10 |
-
"strategy": {
|
11 |
-
"Fixed": 128
|
12 |
-
},
|
13 |
-
"direction": "Right",
|
14 |
-
"pad_to_multiple_of": null,
|
15 |
-
"pad_id": 0,
|
16 |
-
"pad_type_id": 0,
|
17 |
-
"pad_token": "[PAD]"
|
18 |
-
},
|
19 |
"added_tokens": [
|
20 |
{
|
21 |
"id": 0,
|
|
|
2 |
"version": "1.0",
|
3 |
"truncation": {
|
4 |
"direction": "Right",
|
5 |
+
"max_length": 512,
|
6 |
"strategy": "LongestFirst",
|
7 |
"stride": 0
|
8 |
},
|
9 |
+
"padding": null,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
"added_tokens": [
|
11 |
{
|
12 |
"id": 0,
|
tokenizer_config.json
CHANGED
@@ -43,23 +43,14 @@
|
|
43 |
},
|
44 |
"clean_up_tokenization_spaces": false,
|
45 |
"cls_token": "[CLS]",
|
46 |
-
"do_basic_tokenize": true,
|
47 |
"do_lower_case": true,
|
48 |
"extra_special_tokens": {},
|
49 |
"mask_token": "[MASK]",
|
50 |
-
"max_length": 128,
|
51 |
"model_max_length": 512,
|
52 |
-
"never_split": null,
|
53 |
-
"pad_to_multiple_of": null,
|
54 |
"pad_token": "[PAD]",
|
55 |
-
"pad_token_type_id": 0,
|
56 |
-
"padding_side": "right",
|
57 |
"sep_token": "[SEP]",
|
58 |
-
"stride": 0,
|
59 |
"strip_accents": null,
|
60 |
"tokenize_chinese_chars": true,
|
61 |
-
"tokenizer_class": "
|
62 |
-
"truncation_side": "right",
|
63 |
-
"truncation_strategy": "longest_first",
|
64 |
"unk_token": "[UNK]"
|
65 |
}
|
|
|
43 |
},
|
44 |
"clean_up_tokenization_spaces": false,
|
45 |
"cls_token": "[CLS]",
|
|
|
46 |
"do_lower_case": true,
|
47 |
"extra_special_tokens": {},
|
48 |
"mask_token": "[MASK]",
|
|
|
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 |
"unk_token": "[UNK]"
|
56 |
}
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 5304
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8e86370459d3d79a889ef96465ca2a67d6a8a2d5810cc7180dcec78c89f4208e
|
3 |
size 5304
|