Training in progress, epoch 1
Browse files- added_tokens.json +5 -1
- config.json +29 -22
- pytorch_model.bin +2 -2
- tokenizer_config.json +2 -0
- training_args.bin +2 -2
added_tokens.json
CHANGED
@@ -1,3 +1,7 @@
|
|
1 |
{
|
2 |
-
"
|
|
|
|
|
|
|
|
|
3 |
}
|
|
|
1 |
{
|
2 |
+
"</s>": 2,
|
3 |
+
"<mask>": 64000,
|
4 |
+
"<pad>": 1,
|
5 |
+
"<s>": 0,
|
6 |
+
"<unk>": 3
|
7 |
}
|
config.json
CHANGED
@@ -1,33 +1,40 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "
|
3 |
-
"activation": "gelu",
|
4 |
"architectures": [
|
5 |
-
"
|
6 |
],
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
|
|
|
|
|
|
|
|
11 |
"id2label": {
|
12 |
-
"0": "
|
13 |
-
"1": "
|
|
|
14 |
},
|
15 |
"initializer_range": 0.02,
|
|
|
16 |
"label2id": {
|
17 |
-
"
|
18 |
-
"
|
|
|
19 |
},
|
20 |
-
"
|
21 |
-
"
|
22 |
-
"
|
23 |
-
"
|
24 |
-
"
|
|
|
|
|
25 |
"problem_type": "single_label_classification",
|
26 |
-
"
|
27 |
-
"seq_classif_dropout": 0.2,
|
28 |
-
"sinusoidal_pos_embds": false,
|
29 |
-
"tie_weights_": true,
|
30 |
"torch_dtype": "float32",
|
31 |
-
"transformers_version": "4.
|
32 |
-
"
|
|
|
|
|
33 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "finiteautomata/bertweet-base-sentiment-analysis",
|
|
|
3 |
"architectures": [
|
4 |
+
"RobertaForSequenceClassification"
|
5 |
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"bos_token_id": 0,
|
8 |
+
"classifier_dropout": null,
|
9 |
+
"eos_token_id": 2,
|
10 |
+
"gradient_checkpointing": false,
|
11 |
+
"hidden_act": "gelu",
|
12 |
+
"hidden_dropout_prob": 0.1,
|
13 |
+
"hidden_size": 768,
|
14 |
"id2label": {
|
15 |
+
"0": "NEG",
|
16 |
+
"1": "NEU",
|
17 |
+
"2": "POS"
|
18 |
},
|
19 |
"initializer_range": 0.02,
|
20 |
+
"intermediate_size": 3072,
|
21 |
"label2id": {
|
22 |
+
"NEG": 0,
|
23 |
+
"NEU": 1,
|
24 |
+
"POS": 2
|
25 |
},
|
26 |
+
"layer_norm_eps": 1e-05,
|
27 |
+
"max_position_embeddings": 130,
|
28 |
+
"model_type": "roberta",
|
29 |
+
"num_attention_heads": 12,
|
30 |
+
"num_hidden_layers": 12,
|
31 |
+
"pad_token_id": 1,
|
32 |
+
"position_embedding_type": "absolute",
|
33 |
"problem_type": "single_label_classification",
|
34 |
+
"tokenizer_class": "BertweetTokenizer",
|
|
|
|
|
|
|
35 |
"torch_dtype": "float32",
|
36 |
+
"transformers_version": "4.34.0",
|
37 |
+
"type_vocab_size": 1,
|
38 |
+
"use_cache": true,
|
39 |
+
"vocab_size": 64001
|
40 |
}
|
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:2bd8fcc972c53d32c69c7fe64e3ba0b9c0d5539252afed54ba4ee3848a71f884
|
3 |
+
size 539678065
|
tokenizer_config.json
CHANGED
@@ -41,6 +41,7 @@
|
|
41 |
"special": true
|
42 |
}
|
43 |
},
|
|
|
44 |
"bos_token": "<s>",
|
45 |
"clean_up_tokenization_spaces": true,
|
46 |
"cls_token": "<s>",
|
@@ -51,5 +52,6 @@
|
|
51 |
"pad_token": "<pad>",
|
52 |
"sep_token": "</s>",
|
53 |
"tokenizer_class": "BertweetTokenizer",
|
|
|
54 |
"unk_token": "<unk>"
|
55 |
}
|
|
|
41 |
"special": true
|
42 |
}
|
43 |
},
|
44 |
+
"additional_special_tokens": [],
|
45 |
"bos_token": "<s>",
|
46 |
"clean_up_tokenization_spaces": true,
|
47 |
"cls_token": "<s>",
|
|
|
52 |
"pad_token": "<pad>",
|
53 |
"sep_token": "</s>",
|
54 |
"tokenizer_class": "BertweetTokenizer",
|
55 |
+
"tokenizer_file": null,
|
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
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eefc423b8bfe7921de4f9984686523f4934afb712e4bcaad9232bb40ba15087e
|
3 |
+
size 4091
|