Update app.py
Browse files
app.py
CHANGED
|
@@ -6,7 +6,7 @@ nltk.download('punkt')
|
|
| 6 |
|
| 7 |
summarizer = pipeline('summarization', model='t5-base')
|
| 8 |
|
| 9 |
-
classifier_model_name = '
|
| 10 |
classifier_emotions = ['positive', 'neutral', 'negative']
|
| 11 |
|
| 12 |
classifier = pipeline('text-classification', model=classifier_model_name)
|
|
|
|
| 6 |
|
| 7 |
summarizer = pipeline('summarization', model='t5-base')
|
| 8 |
|
| 9 |
+
classifier_model_name = 'manvik28/FinBERT_Tuned'
|
| 10 |
classifier_emotions = ['positive', 'neutral', 'negative']
|
| 11 |
|
| 12 |
classifier = pipeline('text-classification', model=classifier_model_name)
|