Spaces:
Runtime error
Runtime error
File size: 302 Bytes
4844514 |
1 2 3 4 5 6 7 |
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() |