kleinay's picture
Create app.py
4844514
raw
history blame
No virus
302 Bytes
import gradio as gr
model = "kleinay/qanom-seq2seq-model-baseline"
description = f"""This is a demo of the '{model}' model, which fine-tuned a Seq2Seq pretrained model on the QANom task"""
title="QANom Parser Demo"
iface = gr.Interface.load(model, title=title, description=description)
iface.launch()