pon / app.py
Manul, da
Update app.py
fba1fde
raw
history blame contribute delete
No virus
175 Bytes
import gradio as gr
import net
import start
def classify(text): return str(start.clf(text))
iface = gr.Interface(fn=classify, inputs="text", outputs="text")
iface.launch()