McAuley-Lab/Amazon-Reviews-2023
Updated • 48k • 335
How to use hassansattar/sentimental-customer-review with TF-Keras:
# Note: 'keras<3.x' or 'tf_keras' must be installed (legacy)
# See https://github.com/keras-team/tf-keras for more details.
from huggingface_hub import from_pretrained_keras
model = from_pretrained_keras("hassansattar/sentimental-customer-review")
This repository contains a machine learning project focused on performing sentiment analysis on Amazon product reviews. The aim is to classify the sentiments expressed in the reviews as either positive or negative. This can assist businesses in automating the analysis of customer feedback and enhance user experience through improved product recommendations.
The task is framed as a binary classification problem:
The dataset comprises reviews collected from Amazon, each labeled as either positive or negative based on the sentiment expressed by the reviewer. The dataset includes:
{
"reviewText": "Great product, loved it!",
"sentiment": "Positive"
}