atharvadhumal/bert-amazon-polarity
010
BERT Fine-tuned on Amazon Polarity
Fine-tuned bert-base-uncased for binary sentiment classification on the Amazon Polarity dataset (3.6M training reviews).
Results
Usage
from transformers import pipeline
classifier = pipeline('sentiment-analysis', model='atharvadhumal/bert-amazon-polarity')
classifier('This product is absolutely amazing!')
# [{'label': 'LABEL_1', 'score': 0.998}]Training Details
See the GitHub repo for full training code.
