AlGe commited on
Commit
e2bd035
·
verified ·
1 Parent(s): e6acab8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -78,7 +78,7 @@ examples = [
78
  # Define Gradio interface
79
  iface = gr.Interface(
80
  fn=all,
81
- inputs=gr.Textbox(lines=5, label="Input Text",placeholder="Write about how your breakfast went or anything else ..."),
82
  outputs=[
83
  gr.HighlightedText(label="Binary Sequence Classification"),
84
  gr.HighlightedText(label="Extended Sequence Classification"),
@@ -86,8 +86,8 @@ iface = gr.Interface(
86
  gr.Label(label="External Detail Count"),
87
  gr.Label(label="Approximated Internal Detail Ratio")
88
  ],
89
- title="Autobiographical Memory Scoring Demo",
90
- description="Precision Memory Analysis: This demo combines two text - and two sequence classification models to showcase our automated Autobiographical Interview scoring Method. Enter a narrative to see the results.",
91
  examples =examples,
92
  theme="soft" #monochrome
93
  )
 
78
  # Define Gradio interface
79
  iface = gr.Interface(
80
  fn=all,
81
+ inputs=gr.Textbox(lines=5, label="Input Text",placeholder="Write about how your breakfast went or anything else that happend or might happen to you ..."),
82
  outputs=[
83
  gr.HighlightedText(label="Binary Sequence Classification"),
84
  gr.HighlightedText(label="Extended Sequence Classification"),
 
86
  gr.Label(label="External Detail Count"),
87
  gr.Label(label="Approximated Internal Detail Ratio")
88
  ],
89
+ title="Scoring Demo",
90
+ description="Autobiographical Memory Analysis: This demo combines two text - and two sequence classification models to showcase our automated Autobiographical Interview scoring method. Submit a narrative to see the results.",
91
  examples =examples,
92
  theme="soft" #monochrome
93
  )