Patrik Stano commited on
Commit
124f6de
·
1 Parent(s): 6c9caf8

fix examples

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -30,7 +30,9 @@ interface = gr.Interface(
30
  inputs=gr.Textbox(lines=5, label="Input Text"),
31
  outputs=gr.Textbox(label="Model Output"),
32
  title="Anaphora resolution demo",
33
- description="",
 
 
34
  theme="default",
35
  examples=examples
36
  )
 
30
  inputs=gr.Textbox(lines=5, label="Input Text"),
31
  outputs=gr.Textbox(label="Model Output"),
32
  title="Anaphora resolution demo",
33
+ description="""Enter text into the \"Input Text\" box, include <ana> </ana> tags around the anaphora
34
+ which is to be resolved. The model generates a copy of the text with <ant> </ant> tags marking the
35
+ predicted antecedent. This demo uses the model based on the mT5 base size model""",
36
  theme="default",
37
  examples=examples
38
  )