frankrobotics's picture
Update app.py
e0ca228 verified
raw
history blame
390 Bytes
import gradio as gr
import json
# from transformers import pipeline
# classifier = pipeline("zero-shot-classification", model="facebook/bart-large-mnli")
def tagging(
input: str,
tags: tuple[str]
):
text = json.loads(str)
return text
app = gr.Interface(fn=tagging, inputs=[
gr.Textbox(label="Your input here"),
gr.Textbox(label="Your input here")
], outputs="text")
app.launch()