README / app.py
LiveEvil's picture
Update app.py
3a3617d
raw
history blame
491 Bytes
import gradio as gr
title = "LA-Regress"
description = "This is the official gradio demo for currentxla, the best language classification AI to be built."
gr.Interface.load(
"huggingface/datasciencemmw/current-best",
inputs="text",
title=title,
description=description,
examples=[
["Conflict is inevitable on the path to peace."],
["Controversy is never leading to peace."],
["Your mother is cool and I am Gilgamesh,,"],
],
enable_queue=True,
).launch()