Views
No views yet
roberta architecture) using professional university student feedback. It accurately classifies educational feedback into Positive, Neutral, and Negative sentiments.roberta)LABEL_0: NegativeLABEL_1: NeutralLABEL_2: Positive1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="RoshaanT1/taha-finetuned-final")
4result = classifier("The professor covered advanced topics well, but assignments were long.")
5print(result)