Feature Extraction
Transformers
PyTorch
Safetensors
xlm-roberta
sentiment-analysis
text-classification
generic
sentiment-classification
multilingual
text-embeddings-inference
Instructions to use numind/NuSentiment-multilingual with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use numind/NuSentiment-multilingual with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="numind/NuSentiment-multilingual")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("numind/NuSentiment-multilingual") model = AutoModel.from_pretrained("numind/NuSentiment-multilingual") - Notebooks
- Google Colab
- Kaggle
Commit ·
39d24ba
1
Parent(s): 65ff1ff
Update README.md
Browse files
README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
license: mit
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
-
pipeline_tag:
|
| 6 |
tags:
|
| 7 |
- sentiment-analysis
|
| 8 |
- text-classification
|
|
|
|
| 2 |
license: mit
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
+
pipeline_tag: feature-extraction
|
| 6 |
tags:
|
| 7 |
- sentiment-analysis
|
| 8 |
- text-classification
|