Downloads · 30 days
7
11% of all-time downloads
AutoBot000/distilbert-imdb-sentiment
distilbert-imdb-sentiment is a text classification model from AutoBot000. Use it when you need a label for a piece of text. It is set up for transformers. The card lists the license as mit.
DistilBERT를 IMDb 영화 리뷰 감정분석 데이터셋으로 fine-tuning한 모델입니다.
Downloads · 30 days
7
11% of all-time downloads
All-time downloads
62
Public
Parameters
67M
268 MB on disk
Likes
1
Public
Click a slice to open those files.
.safetensors268 MB · 100%
From the Hugging Face model README
DistilBERT를 IMDb 영화 리뷰 감정분석 데이터셋으로 fine-tuning한 모델입니다.
from transformers import pipeline
classifier = pipeline("text-classification", model="AutoBot000/distilbert-imdb-sentiment")
result = classifier("This movie was absolutely fantastic!")
print(result)