Spaces:
Runtime error
Runtime error
File size: 313 Bytes
e3128c9 32fafb4 e3128c9 41c442c e3128c9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
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)
|