e-motion / src /app.py
F00KEN's picture
e-motion project using gradio
44be8c8
raw
history blame
165 Bytes
"""Main module to run the Gradio interface for sentiment analysis."""
from gradio_interface import demo
if __name__ == "__main__":
demo.launch(inbrowser=True)