Spaces:
Running
Running
from __future__ import annotations | |
import os | |
from functools import lru_cache | |
from typing import TYPE_CHECKING | |
import gradio as gr | |
import joblib | |
from app.model import infer_model | |
if TYPE_CHECKING: | |
from sklearn.base import BaseEstimator | |
__all__ = ["launch_gui"] | |
POSITIVE_LABEL = "Positive π" | |
NEUTRAL_LABEL = "Neutral π" | |
NEGATIVE_LABEL = "Negative π€" | |
def load_model() -> BaseEstimator: | |
"""Load the trained model and cache it.""" | |
model_path = os.environ.get("MODEL_PATH", None) | |
if model_path is None: | |
msg = "MODEL_PATH environment variable not set" | |
raise ValueError(msg) | |
return joblib.load(model_path) | |
def sentiment_analysis(text: str) -> str: | |
"""Perform sentiment analysis on the provided text.""" | |
model = load_model() | |
prediction = infer_model(model, [text])[0] | |
if prediction == 0: | |
return NEGATIVE_LABEL | |
if prediction == 1: | |
return POSITIVE_LABEL | |
return NEUTRAL_LABEL | |
demo = gr.Interface( | |
fn=sentiment_analysis, | |
inputs=gr.Textbox(lines=10, label="Enter text here"), | |
outputs="label", | |
title="Sentiment Analysis", | |
description="Predict the sentiment of a given text.", | |
examples=[ | |
["I love the weather today!"], | |
["You are a terrible person."], | |
["The movie we watched was boring."], | |
["This website is amazing!"], | |
], | |
allow_flagging=False, | |
) | |
def launch_gui(share: bool) -> None: | |
"""Launch the Gradio GUI.""" | |
demo.launch(share=share) | |
if __name__ == "__main__": | |
demo.launch() | |