Instructions to use xaqren/sentiment_analysis with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use xaqren/sentiment_analysis with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="xaqren/sentiment_analysis")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("xaqren/sentiment_analysis") model = AutoModelForSequenceClassification.from_pretrained("xaqren/sentiment_analysis", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -35,5 +35,5 @@ classifier using the features produced by the BERT model as inputs.
|
|
| 35 |
|
| 36 |
## Model description [xaqren/sentiment_analysis]
|
| 37 |
|
| 38 |
-
This is a fine-tuned downstream version of bert-base-uncased model for sentiment analysis, this model is not intended for
|
| 39 |
-
|
|
|
|
| 35 |
|
| 36 |
## Model description [xaqren/sentiment_analysis]
|
| 37 |
|
| 38 |
+
This is a fine-tuned downstream version of the bert-base-uncased model for sentiment analysis, this model is not intended for
|
| 39 |
+
further downstream fine-tuning for any other tasks. This model is trained on a classified dataset for text-classification.
|