stanfordnlp/imdb
Viewer • Updated • 100k • 178k • 370
How to use appleboiy/DistilBERT-Sentiment with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("zero-shot-classification", model="appleboiy/DistilBERT-Sentiment") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("appleboiy/DistilBERT-Sentiment")
model = AutoModelForSequenceClassification.from_pretrained("appleboiy/DistilBERT-Sentiment")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("appleboiy/DistilBERT-Sentiment")
model = AutoModelForSequenceClassification.from_pretrained("appleboiy/DistilBERT-Sentiment")Example code:
# Sample text to predict
text = "I love this movie, it was fantastic!"
# Tokenize the input text
inputs = tokenizer(text, return_tensors="pt", padding=True, truncation=True)
# Get model predictions
with torch.no_grad():
outputs = model(**inputs)
# Get the logits (model's raw output)
logits = outputs.logits
# Convert logits to probabilities (if needed) and get the predicted class (0 or 1)
predictions = torch.argmax(logits, dim=-1).item()
# Map the prediction to sentiment labels
labels = {0: "NEGATIVE", 1: "POSITIVE"} # Assuming binary classification
predicted_label = labels[predictions]
print(f"Predicted Sentiment: {predicted_label}")
Base model
distilbert/distilbert-base-uncased
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("zero-shot-classification", model="appleboiy/DistilBERT-Sentiment")