Edit model card

Sentiment analysis model that uses MiniLM pre-trained (from https://huggingface.co/microsoft/MiniLM-L12-H384-uncased), and fine-tuned on a dataset containing Trip Advisor reviews (from https://www.kaggle.com/datasets/arnabchaki/tripadvisor-reviews-2023).

Reviews with 1 or 2 stars are considered 'Negative', 3 stars are 'Neutral', and 4 or 5 stars are 'Positive'.

Should be loaded with the following code:

# Load pre-trained model and tokenizer
model_name = "gosorio/minilmFT_TripAdvisor_Sentiment"
tokenizer_name = "microsoft/MiniLM-L12-H384-uncased" # the standard MiniLM
device = torch.device('cuda') if torch.cuda.is_available() else torch.device('cpu')

tokenizer = AutoTokenizer.from_pretrained(tokenizer_name)
model = AutoModelForSequenceClassification.from_pretrained(model_name, num_labels=3).to(device)
Downloads last month
34

Dataset used to train gosorio/minilmFT_TripAdvisor_Sentiment