Spaces:
Runtime error
Runtime error
import gradio as gr | |
from inductor import BartInductor | |
inductor = BartInductor() | |
def bart(text): | |
return inductor.generate(text) | |
iface = gr.Interface(fn=bart, | |
inputs=gr.inputs.Textbox(default='<mask> is the capital of <mask>.'), | |
outputs="text", | |
title="BART Inductor", | |
description="Enter a text prompt to generate text using BART.") | |
iface.launch() | |