kobbyeduah commited on
Commit
3517432
1 Parent(s): cc2612c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -25,7 +25,7 @@ nltk.download('stopwords')
25
  nltk.download('wordnet')
26
 
27
  # Load the tokenizer and model from Hugging Face
28
- model_path = "rasmodev/Covid-19_Sentiment_Analysis_RoBERTa_Model"
29
  tokenizer = AutoTokenizer.from_pretrained(model_path)
30
  model = AutoModelForSequenceClassification.from_pretrained(model_path)
31
 
 
25
  nltk.download('wordnet')
26
 
27
  # Load the tokenizer and model from Hugging Face
28
+ model_path = "kobbyeduah/NLP_Sentiment_Analysis"
29
  tokenizer = AutoTokenizer.from_pretrained(model_path)
30
  model = AutoModelForSequenceClassification.from_pretrained(model_path)
31