Commit
·
fe0e712
1
Parent(s):
07248ee
Training in progress, epoch 1
Browse files- config.json +25 -15
- pytorch_model.bin +2 -2
- tokenizer.json +0 -0
- tokenizer_config.json +4 -1
- training_args.bin +1 -1
- vocab.txt +0 -0
config.json
CHANGED
|
@@ -1,35 +1,45 @@
|
|
| 1 |
{
|
| 2 |
-
"_name_or_path": "
|
| 3 |
-
"
|
| 4 |
"architectures": [
|
| 5 |
-
"
|
| 6 |
],
|
| 7 |
-
"
|
| 8 |
-
"
|
| 9 |
-
"
|
| 10 |
-
"
|
|
|
|
|
|
|
|
|
|
| 11 |
"id2label": {
|
| 12 |
"0": "LABEL_0",
|
| 13 |
"1": "LABEL_1",
|
| 14 |
"2": "LABEL_2"
|
| 15 |
},
|
| 16 |
"initializer_range": 0.02,
|
|
|
|
| 17 |
"label2id": {
|
| 18 |
"LABEL_0": 0,
|
| 19 |
"LABEL_1": 1,
|
| 20 |
"LABEL_2": 2
|
| 21 |
},
|
|
|
|
| 22 |
"max_position_embeddings": 512,
|
| 23 |
-
"model_type": "
|
| 24 |
-
"
|
| 25 |
-
"
|
|
|
|
| 26 |
"pad_token_id": 0,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
"problem_type": "single_label_classification",
|
| 28 |
-
"qa_dropout": 0.1,
|
| 29 |
-
"seq_classif_dropout": 0.2,
|
| 30 |
-
"sinusoidal_pos_embds": false,
|
| 31 |
-
"tie_weights_": true,
|
| 32 |
"torch_dtype": "float32",
|
| 33 |
"transformers_version": "4.33.2",
|
| 34 |
-
"
|
|
|
|
|
|
|
| 35 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"_name_or_path": "nlptown/bert-base-multilingual-uncased-sentiment",
|
| 3 |
+
"_num_labels": 5,
|
| 4 |
"architectures": [
|
| 5 |
+
"BertForSequenceClassification"
|
| 6 |
],
|
| 7 |
+
"attention_probs_dropout_prob": 0.1,
|
| 8 |
+
"classifier_dropout": null,
|
| 9 |
+
"directionality": "bidi",
|
| 10 |
+
"finetuning_task": "sentiment-analysis",
|
| 11 |
+
"hidden_act": "gelu",
|
| 12 |
+
"hidden_dropout_prob": 0.1,
|
| 13 |
+
"hidden_size": 768,
|
| 14 |
"id2label": {
|
| 15 |
"0": "LABEL_0",
|
| 16 |
"1": "LABEL_1",
|
| 17 |
"2": "LABEL_2"
|
| 18 |
},
|
| 19 |
"initializer_range": 0.02,
|
| 20 |
+
"intermediate_size": 3072,
|
| 21 |
"label2id": {
|
| 22 |
"LABEL_0": 0,
|
| 23 |
"LABEL_1": 1,
|
| 24 |
"LABEL_2": 2
|
| 25 |
},
|
| 26 |
+
"layer_norm_eps": 1e-12,
|
| 27 |
"max_position_embeddings": 512,
|
| 28 |
+
"model_type": "bert",
|
| 29 |
+
"num_attention_heads": 12,
|
| 30 |
+
"num_hidden_layers": 12,
|
| 31 |
+
"output_past": true,
|
| 32 |
"pad_token_id": 0,
|
| 33 |
+
"pooler_fc_size": 768,
|
| 34 |
+
"pooler_num_attention_heads": 12,
|
| 35 |
+
"pooler_num_fc_layers": 3,
|
| 36 |
+
"pooler_size_per_head": 128,
|
| 37 |
+
"pooler_type": "first_token_transform",
|
| 38 |
+
"position_embedding_type": "absolute",
|
| 39 |
"problem_type": "single_label_classification",
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
"torch_dtype": "float32",
|
| 41 |
"transformers_version": "4.33.2",
|
| 42 |
+
"type_vocab_size": 2,
|
| 43 |
+
"use_cache": true,
|
| 44 |
+
"vocab_size": 105879
|
| 45 |
}
|
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:4bd74d937edfad3e8b567709a8caf1cc8701d3cb256e4fbc674461e02e9ca17c
|
| 3 |
+
size 669503281
|
tokenizer.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
CHANGED
|
@@ -1,13 +1,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": "
|
| 12 |
"unk_token": "[UNK]"
|
| 13 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"clean_up_tokenization_spaces": true,
|
| 3 |
"cls_token": "[CLS]",
|
| 4 |
+
"do_basic_tokenize": true,
|
| 5 |
"do_lower_case": true,
|
| 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": "BertTokenizer",
|
| 15 |
"unk_token": "[UNK]"
|
| 16 |
}
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 4091
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca57369418bb9c814ec0a1ade18ae5e6af94d4dccf4d6da7eb10246bab023665
|
| 3 |
size 4091
|
vocab.txt
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|