DistilBERT is a transformer model that performs sentiment analysis. I fine-tuned the model on IMDB dataset with the purpose of classifying positive reviews from the bad ones. The model predicts these 2 classes.
The model is a fine-tuned version of
DistilBERT.
It was fine-tuned on IMDB dataset [
https://huggingface.co/datasets/imdb].
This model is a fine-tuned version of
distilbert-base-uncased on IMDB dataset.
1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="LukeGPT88/imdb_text_classifier")
4classifier("I see it and it was awesome.")
1Output:
2[{'label': 'POSITIVE', 'score': 0.9958052635192871}]
Please reach out to
luca.flammia@gmail.com if you have any questions or feedback.