Update app.py
Browse files
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"
|
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
|