kalebu's picture
updated space title
41c442c
raw
history blame
313 Bytes
import joblib
import gradio as gr
model = joblib.load("model.pkl")
def get_sentiment(input_text):
return model.predict([input_text][0].capitalize())
iface = gr.Interface(
fn=get_sentiment,
inputs="text",
outputs=["text"],
title="Swahili Sentiment Analysis",
)
iface.launch(inline=False)