kalebu's picture
added sentiment-model
e3128c9
raw
history blame
276 Bytes
import joblib
import gradio as gr
model = joblib.load("model.pkl")
def get_sentiment(input_text):
return model.predict([input_text])
iface = gr.Interface(
fn=get_sentiment, inputs="text", outputs=["text"], title="Sentiment Analysis"
)
iface.launch(inline=False)