Upload folder using huggingface_hub
Browse files- README.md +9 -0
- added_tokens.json +5 -0
- config.json +94 -0
- onnx/model.onnx +3 -0
- onnx/model_bnb4.onnx +3 -0
- onnx/model_fp16.onnx +3 -0
- onnx/model_int8.onnx +3 -0
- onnx/model_q4.onnx +3 -0
- onnx/model_q4f16.onnx +3 -0
- onnx/model_quantized.onnx +3 -0
- onnx/model_uint8.onnx +3 -0
- quantize_config.json +18 -0
- special_tokens_map.json +37 -0
- tokenizer.json +0 -0
- tokenizer_config.json +86 -0
- vocab.txt +0 -0
README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers.js
|
| 3 |
+
base_model:
|
| 4 |
+
- pysentimiento/bert-pt-emotion
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# bert-pt-emotion (ONNX)
|
| 8 |
+
|
| 9 |
+
This is an ONNX version of [pysentimiento/bert-pt-emotion](https://huggingface.co/pysentimiento/bert-pt-emotion). It was automatically converted and uploaded using [this space](https://huggingface.co/spaces/onnx-community/convert-to-onnx).
|
added_tokens.json
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"@USER": 29794,
|
| 3 |
+
"HTTPURL": 29795,
|
| 4 |
+
"hashtag": 29796
|
| 5 |
+
}
|
config.json
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_attn_implementation_autoset": true,
|
| 3 |
+
"_name_or_path": "pysentimiento/bert-pt-emotion",
|
| 4 |
+
"architectures": [
|
| 5 |
+
"BertForSequenceClassification"
|
| 6 |
+
],
|
| 7 |
+
"attention_probs_dropout_prob": 0.1,
|
| 8 |
+
"classifier_dropout": null,
|
| 9 |
+
"directionality": "bidi",
|
| 10 |
+
"hidden_act": "gelu",
|
| 11 |
+
"hidden_dropout_prob": 0.1,
|
| 12 |
+
"hidden_size": 768,
|
| 13 |
+
"id2label": {
|
| 14 |
+
"0": "admiration",
|
| 15 |
+
"1": "amusement",
|
| 16 |
+
"2": "anger",
|
| 17 |
+
"3": "annoyance",
|
| 18 |
+
"4": "approval",
|
| 19 |
+
"5": "caring",
|
| 20 |
+
"6": "confusion",
|
| 21 |
+
"7": "curiosity",
|
| 22 |
+
"8": "desire",
|
| 23 |
+
"9": "disappointment",
|
| 24 |
+
"10": "disapproval",
|
| 25 |
+
"11": "disgust",
|
| 26 |
+
"12": "embarrassment",
|
| 27 |
+
"13": "excitement",
|
| 28 |
+
"14": "fear",
|
| 29 |
+
"15": "gratitude",
|
| 30 |
+
"16": "grief",
|
| 31 |
+
"17": "joy",
|
| 32 |
+
"18": "love",
|
| 33 |
+
"19": "nervousness",
|
| 34 |
+
"20": "optimism",
|
| 35 |
+
"21": "pride",
|
| 36 |
+
"22": "realization",
|
| 37 |
+
"23": "relief",
|
| 38 |
+
"24": "remorse",
|
| 39 |
+
"25": "sadness",
|
| 40 |
+
"26": "surprise",
|
| 41 |
+
"27": "neutral"
|
| 42 |
+
},
|
| 43 |
+
"initializer_range": 0.02,
|
| 44 |
+
"intermediate_size": 3072,
|
| 45 |
+
"label2id": {
|
| 46 |
+
"admiration": 0,
|
| 47 |
+
"amusement": 1,
|
| 48 |
+
"anger": 2,
|
| 49 |
+
"annoyance": 3,
|
| 50 |
+
"approval": 4,
|
| 51 |
+
"caring": 5,
|
| 52 |
+
"confusion": 6,
|
| 53 |
+
"curiosity": 7,
|
| 54 |
+
"desire": 8,
|
| 55 |
+
"disappointment": 9,
|
| 56 |
+
"disapproval": 10,
|
| 57 |
+
"disgust": 11,
|
| 58 |
+
"embarrassment": 12,
|
| 59 |
+
"excitement": 13,
|
| 60 |
+
"fear": 14,
|
| 61 |
+
"gratitude": 15,
|
| 62 |
+
"grief": 16,
|
| 63 |
+
"joy": 17,
|
| 64 |
+
"love": 18,
|
| 65 |
+
"nervousness": 19,
|
| 66 |
+
"neutral": 27,
|
| 67 |
+
"optimism": 20,
|
| 68 |
+
"pride": 21,
|
| 69 |
+
"realization": 22,
|
| 70 |
+
"relief": 23,
|
| 71 |
+
"remorse": 24,
|
| 72 |
+
"sadness": 25,
|
| 73 |
+
"surprise": 26
|
| 74 |
+
},
|
| 75 |
+
"layer_norm_eps": 1e-12,
|
| 76 |
+
"max_position_embeddings": 512,
|
| 77 |
+
"model_type": "bert",
|
| 78 |
+
"num_attention_heads": 12,
|
| 79 |
+
"num_hidden_layers": 12,
|
| 80 |
+
"output_past": true,
|
| 81 |
+
"pad_token_id": 0,
|
| 82 |
+
"pooler_fc_size": 768,
|
| 83 |
+
"pooler_num_attention_heads": 12,
|
| 84 |
+
"pooler_num_fc_layers": 3,
|
| 85 |
+
"pooler_size_per_head": 128,
|
| 86 |
+
"pooler_type": "first_token_transform",
|
| 87 |
+
"position_embedding_type": "absolute",
|
| 88 |
+
"problem_type": "multi_label_classification",
|
| 89 |
+
"torch_dtype": "float32",
|
| 90 |
+
"transformers_version": "4.49.0",
|
| 91 |
+
"type_vocab_size": 2,
|
| 92 |
+
"use_cache": true,
|
| 93 |
+
"vocab_size": 29797
|
| 94 |
+
}
|
onnx/model.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f99f89dade9e97edfcc7000a760bb5b001c259e24f66a945030e9c9281203bd8
|
| 3 |
+
size 436096254
|
onnx/model_bnb4.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8bfa994b4bf1de514bef06a56c082a01ccfb95a05e0141f0d11d65253bc9c4b
|
| 3 |
+
size 144144576
|
onnx/model_fp16.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1ec64dfe2a76af474f051ba1ff261ee665265750842467978e8cc218f2d798a6
|
| 3 |
+
size 218202608
|
onnx/model_int8.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cbba78ec38cd46e0ec2ab7eb6a66270e1cba6a424e4bd77e00c9c086c9b2e17d
|
| 3 |
+
size 110136452
|
onnx/model_q4.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:15e4dea953e4da1e4b3098f8b06c07ddb5005cbc4ed4920e124014c49194b1b7
|
| 3 |
+
size 149452464
|
onnx/model_q4f16.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:59c90df4e1a46290bb1f0d484b6beccbf6d5f3c690577350ff638f1a0116fbbb
|
| 3 |
+
size 96119811
|
onnx/model_quantized.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cbba78ec38cd46e0ec2ab7eb6a66270e1cba6a424e4bd77e00c9c086c9b2e17d
|
| 3 |
+
size 110136452
|
onnx/model_uint8.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9d62dac5b6841aca355029929f5626ef4380d812ed44047f18a07a1846a208bf
|
| 3 |
+
size 110136452
|
quantize_config.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"modes": [
|
| 3 |
+
"fp16",
|
| 4 |
+
"q8",
|
| 5 |
+
"int8",
|
| 6 |
+
"uint8",
|
| 7 |
+
"q4",
|
| 8 |
+
"q4f16",
|
| 9 |
+
"bnb4"
|
| 10 |
+
],
|
| 11 |
+
"per_channel": true,
|
| 12 |
+
"reduce_range": true,
|
| 13 |
+
"block_size": null,
|
| 14 |
+
"is_symmetric": true,
|
| 15 |
+
"accuracy_level": null,
|
| 16 |
+
"quant_type": 1,
|
| 17 |
+
"op_block_list": null
|
| 18 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"cls_token": {
|
| 3 |
+
"content": "[CLS]",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 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 |
+
}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"added_tokens_decoder": {
|
| 3 |
+
"0": {
|
| 4 |
+
"content": "[PAD]",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false,
|
| 9 |
+
"special": true
|
| 10 |
+
},
|
| 11 |
+
"100": {
|
| 12 |
+
"content": "[UNK]",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false,
|
| 17 |
+
"special": true
|
| 18 |
+
},
|
| 19 |
+
"101": {
|
| 20 |
+
"content": "[CLS]",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false,
|
| 25 |
+
"special": true
|
| 26 |
+
},
|
| 27 |
+
"102": {
|
| 28 |
+
"content": "[SEP]",
|
| 29 |
+
"lstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"single_word": false,
|
| 33 |
+
"special": true
|
| 34 |
+
},
|
| 35 |
+
"103": {
|
| 36 |
+
"content": "[MASK]",
|
| 37 |
+
"lstrip": false,
|
| 38 |
+
"normalized": false,
|
| 39 |
+
"rstrip": false,
|
| 40 |
+
"single_word": false,
|
| 41 |
+
"special": true
|
| 42 |
+
},
|
| 43 |
+
"29794": {
|
| 44 |
+
"content": "@USER",
|
| 45 |
+
"lstrip": false,
|
| 46 |
+
"normalized": true,
|
| 47 |
+
"rstrip": false,
|
| 48 |
+
"single_word": false,
|
| 49 |
+
"special": false
|
| 50 |
+
},
|
| 51 |
+
"29795": {
|
| 52 |
+
"content": "HTTPURL",
|
| 53 |
+
"lstrip": false,
|
| 54 |
+
"normalized": true,
|
| 55 |
+
"rstrip": false,
|
| 56 |
+
"single_word": false,
|
| 57 |
+
"special": false
|
| 58 |
+
},
|
| 59 |
+
"29796": {
|
| 60 |
+
"content": "hashtag",
|
| 61 |
+
"lstrip": false,
|
| 62 |
+
"normalized": true,
|
| 63 |
+
"rstrip": false,
|
| 64 |
+
"single_word": false,
|
| 65 |
+
"special": false
|
| 66 |
+
}
|
| 67 |
+
},
|
| 68 |
+
"clean_up_tokenization_spaces": true,
|
| 69 |
+
"cls_token": "[CLS]",
|
| 70 |
+
"do_basic_tokenize": true,
|
| 71 |
+
"do_lower_case": false,
|
| 72 |
+
"extra_special_tokens": {},
|
| 73 |
+
"mask_token": "[MASK]",
|
| 74 |
+
"max_length": 128,
|
| 75 |
+
"model_max_length": 128,
|
| 76 |
+
"never_split": null,
|
| 77 |
+
"pad_token": "[PAD]",
|
| 78 |
+
"sep_token": "[SEP]",
|
| 79 |
+
"stride": 0,
|
| 80 |
+
"strip_accents": null,
|
| 81 |
+
"tokenize_chinese_chars": true,
|
| 82 |
+
"tokenizer_class": "BertTokenizer",
|
| 83 |
+
"truncation_side": "right",
|
| 84 |
+
"truncation_strategy": "longest_first",
|
| 85 |
+
"unk_token": "[UNK]"
|
| 86 |
+
}
|
vocab.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|