File size: 678 Bytes
29c5704
47f38d5
 
 
 
 
 
 
 
 
 
 
 
 
a11ee17
 
 
 
29c5704
 
7af1a44
 
a11ee17
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import gradio
import nltk
import pandas as pd
from transformers import pipeline

summarizer = pipeline('summarization', model='t5-base')

# classifier_model_name = 'bhadresh-savani/distilbert-base-uncased-emotion'
# classifier_emotions = ['anger', 'disgust', 'fear', 'joy', 'sadness', 'surprise']

classifier_model_name = 'ProsusAI/finbert'
classifier_emotions = ['positive', 'neutral', 'negative']

classifier = pipeline('text-classification', model=classifier_model_name)

def my_inference_function(name):
    return "Hello " + name + "!"

gr_interface = gradio.Interface(
    fn = my_inference_function,
    inputs = "text",
    outputs = "text"
)

gr_interface.launch()