orion / app.py
andreslu's picture
Update app.py
0044d3c
raw
history blame
386 Bytes
import gradio as gr
from inductor import BartInductor
try:
inductor = BartInductor()
rule = '<mask> is the capital of <mask>.'
generated_texts = inductor.generate(rule)
for text in generated_texts:
print(text)
except:
pass
def uppercase(text):
return text.upper()
iface = gr.Interface(fn=uppercase, inputs="text", outputs="text")
iface.launch()