parasmech commited on
Commit
28349db
·
verified ·
1 Parent(s): 1bef306

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
2
  from transformers import pipeline
3
 
4
 
5
- model = pipeline("text-classification", model="distilbert-base-uncased-finetuned-sst-2-english")
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="Text Classification or Sentiment Analysis",
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