Feature Extraction
Transformers
PyTorch
Safetensors
English
bert
sentiment-analysis
text-classification
generic
sentiment-classification
text-embeddings-inference
Instructions to use numind/NuSentiment with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use numind/NuSentiment with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="numind/NuSentiment")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("numind/NuSentiment") model = AutoModel.from_pretrained("numind/NuSentiment") - Notebooks
- Google Colab
- Kaggle
Commit ·
0149d84
1
Parent(s): a6cf5eb
Update README.md
Browse files
README.md
CHANGED
|
@@ -3,12 +3,17 @@ license: mit
|
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
pipeline_tag: text-classification
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
---
|
| 7 |
Usage:
|
| 8 |
|
| 9 |
## Model
|
| 10 |
|
| 11 |
-
Base version of e5-v2 finetunned on an annotated
|
| 12 |
|
| 13 |
## Usage
|
| 14 |
|
|
|
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
pipeline_tag: text-classification
|
| 6 |
+
tags:
|
| 7 |
+
- sentiment-analysis
|
| 8 |
+
- text-classification
|
| 9 |
+
- generic
|
| 10 |
+
- sentiment-classification
|
| 11 |
---
|
| 12 |
Usage:
|
| 13 |
|
| 14 |
## Model
|
| 15 |
|
| 16 |
+
Base version of e5-v2 finetunned on an annotated subset of C4 (Numind/C4_sentiment-analysis). This model provide generic embedding for sentiment analysis.
|
| 17 |
|
| 18 |
## Usage
|
| 19 |
|