Kalaora commited on
Commit ·
9c1942d
1
Parent(s): 2407d03
Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +45 -0
- pytorch_model.bin +3 -0
- runs/Apr04_15-14-04_616a8cff5b50/1649085253.393663/events.out.tfevents.1649085253.616a8cff5b50.80.1 +3 -0
- runs/Apr04_15-14-04_616a8cff5b50/events.out.tfevents.1649085253.616a8cff5b50.80.0 +3 -0
- special_tokens_map.json +1 -0
- tokenizer.json +0 -0
- tokenizer_config.json +1 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
checkpoint-*/
|
config.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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": "NEGATIVE",
|
| 16 |
+
"1": "NEUTRAL",
|
| 17 |
+
"2": "POSITIVE"
|
| 18 |
+
},
|
| 19 |
+
"initializer_range": 0.02,
|
| 20 |
+
"intermediate_size": 3072,
|
| 21 |
+
"label2id": {
|
| 22 |
+
"NEGATIVE": 0,
|
| 23 |
+
"NEUTRAL": 1,
|
| 24 |
+
"POSITIVE": 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.17.0",
|
| 42 |
+
"type_vocab_size": 2,
|
| 43 |
+
"use_cache": true,
|
| 44 |
+
"vocab_size": 105879
|
| 45 |
+
}
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec7844ba56bcbc08f0f790f3e1897df417a837ffbe8dcd90e95d6102ef326a61
|
| 3 |
+
size 669519917
|
runs/Apr04_15-14-04_616a8cff5b50/1649085253.393663/events.out.tfevents.1649085253.616a8cff5b50.80.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2832241383c68dafedad203f5cede550ea282bfc7beae61e2c553671e4269ac7
|
| 3 |
+
size 4788
|
runs/Apr04_15-14-04_616a8cff5b50/events.out.tfevents.1649085253.616a8cff5b50.80.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb04563093ee661813076c98fd01fb8bb4c526a5025e514d9cc2bf2ceb76e5a0
|
| 3 |
+
size 4083
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "max_len": 512, "special_tokens_map_file": "/root/.cache/huggingface/transformers/ed85e7bfaa7dfcf9924004400478a6426fcab28d3e427960549371a1729115d1.dd8bd9bfd3664b530ea4e645105f557769387b3da9f79bdb55ed556bdd80611d", "name_or_path": "nlptown/bert-base-multilingual-uncased-sentiment", "do_basic_tokenize": true, "never_split": null, "tokenizer_class": "BertTokenizer"}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:318ea477cb13838417d3c4d56b4bd9e877b0b61cea04a9bcbd5fc6827a869d79
|
| 3 |
+
size 3055
|
vocab.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|