Instructions to use dariadaria/reviews_classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dariadaria/reviews_classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="dariadaria/reviews_classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("dariadaria/reviews_classifier") model = AutoModelForSequenceClassification.from_pretrained("dariadaria/reviews_classifier", device_map="auto") - Notebooks
- Google Colab
- Kaggle
# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("dariadaria/reviews_classifier")
model = AutoModelForSequenceClassification.from_pretrained("dariadaria/reviews_classifier", device_map="auto")Quick Links
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
SENTIMENT_LABELS = { 'NEGATIVE': 0, 'POSITIVE': 1, 'NEUTRAL': 2, }
num_classes = 3
language:
- en
thumbnail: "url to a thumbnail used in social sharing"
tags:
- sentiment analysis
license: commercial use disallowed
datasets:
- dariadaria/disneyland_reviews
metrics: confusion matrix | | pred:0(NEG)| pred:1(POS)| pred:2(NEU)| | ------------ | --------- | ----------- | ----------- | | true:0(NEG) | 793| 188| 171| | true:1(POS) | 227 | 920| 260| | true:2(NEU) | 115 | 203| 5087|
- Downloads last month
- 6
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="dariadaria/reviews_classifier")