Text Classification
Transformers
Safetensors
English
emcoder
emotion-recognition
bayesian-deep-learning
mc-dropout
uncertainty-quantification
multi-label-classification
custom_code
Eval Results (legacy)
Instructions to use yezdata/EmCoder with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use yezdata/EmCoder with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="yezdata/EmCoder", trust_remote_code=True)# Load model directly from transformers import AutoModelForSequenceClassification model = AutoModelForSequenceClassification.from_pretrained("yezdata/EmCoder", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
remove locally saved tokenizer
Browse files- tokenizer_config.json +0 -17
tokenizer_config.json
DELETED
|
@@ -1,17 +0,0 @@
|
|
| 1 |
-
{
|
| 2 |
-
"backend": "tokenizers",
|
| 3 |
-
"clean_up_tokenization_spaces": true,
|
| 4 |
-
"cls_token": "[CLS]",
|
| 5 |
-
"is_local": false,
|
| 6 |
-
"local_files_only": false,
|
| 7 |
-
"mask_token": "[MASK]",
|
| 8 |
-
"model_input_names": [
|
| 9 |
-
"input_ids",
|
| 10 |
-
"attention_mask"
|
| 11 |
-
],
|
| 12 |
-
"model_max_length": 8192,
|
| 13 |
-
"pad_token": "[PAD]",
|
| 14 |
-
"sep_token": "[SEP]",
|
| 15 |
-
"tokenizer_class": "TokenizersBackend",
|
| 16 |
-
"unk_token": "[UNK]"
|
| 17 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|