echung682 commited on
Commit
b309b24
·
verified ·
1 Parent(s): 445f619

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ model = AutoModelForSequenceClassification.from_pretrained(model_ckpt)
15
  pipe = pipeline(model=model_ckpt)
16
 
17
  #importing the dataset (a whole bunch of text)
18
- emotion_dataset = load_dataset("echung682/emotion-analysis-tweets", use_auth_token=False)
19
 
20
  #in order to keep the data persistent on HuggingFace repo
21
  #they are saved as secrets in my HuggingFace space because they shouldn't be visible in the code
 
15
  pipe = pipeline(model=model_ckpt)
16
 
17
  #importing the dataset (a whole bunch of text)
18
+ emotion_dataset = load_dataset("echung682/emotion-analysis-tweets")
19
 
20
  #in order to keep the data persistent on HuggingFace repo
21
  #they are saved as secrets in my HuggingFace space because they shouldn't be visible in the code