Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
|
|
2 |
from transformers import pipeline
|
3 |
|
4 |
|
5 |
-
model = pipeline("text-classification", model="
|
6 |
|
7 |
def input_text_fn(text):
|
8 |
result = model(text)
|
@@ -15,8 +15,8 @@ interface = gr.Interface(
|
|
15 |
fn=input_text_fn,
|
16 |
inputs="text",
|
17 |
outputs="text",
|
18 |
-
title="
|
19 |
-
description="Enter text to classify it as positive or negative sentiment."
|
20 |
)
|
21 |
|
22 |
# Launch the app
|
|
|
2 |
from transformers import pipeline
|
3 |
|
4 |
|
5 |
+
model = pipeline("text-classification", model="ProsusAI/finbert")
|
6 |
|
7 |
def input_text_fn(text):
|
8 |
result = model(text)
|
|
|
15 |
fn=input_text_fn,
|
16 |
inputs="text",
|
17 |
outputs="text",
|
18 |
+
title="Financial Data Sentiment Analysis",
|
19 |
+
description="Enter financial text to classify it as positive, neutral or negative sentiment."
|
20 |
)
|
21 |
|
22 |
# Launch the app
|