kleinay commited on
Commit
4844514
1 Parent(s): 37d4575

Create app.py

Browse files

Initial commit

Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ model = "kleinay/qanom-seq2seq-model-baseline"
4
+ description = f"""This is a demo of the '{model}' model, which fine-tuned a Seq2Seq pretrained model on the QANom task"""
5
+ title="QANom Parser Demo"
6
+ iface = gr.Interface.load(model, title=title, description=description)
7
+ iface.launch()