kleinay commited on
Commit
d6b5b47
1 Parent(s): b1f0d38

fix description

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ models = ["kleinay/qanom-seq2seq-model-baseline",
6
  pipelines = {model: QASRL_Pipeline(model) for model in models}
7
 
8
 
9
- description = f"""This is a demo of the '{model}' model, which fine-tuned a Seq2Seq pretrained model on the QANom task."""
10
  title="QANom Parser Demo"
11
  examples = [[models[0], "The doctor was interested in Luke 's <p> treatment .", True, "treat"],
12
  [models[0], "The Veterinary student was interested in Luke 's <p> treatment of sea animals .", True, "treat"]]
 
6
  pipelines = {model: QASRL_Pipeline(model) for model in models}
7
 
8
 
9
+ description = f"""This is a demo of QASRL/QANom models, which fine-tuned a Seq2Seq pretrained model (T5) on the QASRL/QANom tasks."""
10
  title="QANom Parser Demo"
11
  examples = [[models[0], "The doctor was interested in Luke 's <p> treatment .", True, "treat"],
12
  [models[0], "The Veterinary student was interested in Luke 's <p> treatment of sea animals .", True, "treat"]]