AlGe commited on
Commit
9352ec1
·
verified ·
1 Parent(s): 7e7558c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -40
app.py CHANGED
@@ -162,58 +162,33 @@ examples = [
162
  ["You know, this conversation reminded me of an incredible experience I had at a music festival in college. I'll never forget it. It was a rainy day, but we didn't care, and the band that was playing was my absolute favorite. Even though we were all soaked, the crowd kept on dancing and singing along. The energy was incredible, and I remember feeling so connected to everyone around me. It was as if the rain made the whole experience even more magical. I was surrounded by friends, and we all shared this special moment together. It was one of the best moments of my life, and I still get goosebumps when I think about it. Sometimes, it's the unexpected things that create the most amazing memories, you know?"],
163
  ]
164
 
165
- # Define Gradio interface using Blocks
166
- with gr.Blocks() as iface:
167
- gr.Markdown("# Scoring Demo")
168
- gr.Markdown("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.")
169
-
170
- with gr.Row():
171
- with gr.Column():
172
- input_text = gr.Textbox(lines=5, label="Input Text", placeholder="Write about how your breakfast went or anything else that happened or might happen to you ...")
173
- gr.Examples(examples=examples, inputs=input_text)
174
-
175
- with gr.Row():
176
- gr.HighlightedText(label="Binary Sequence Classification",
177
- color_map={
178
- "External": "#6ad5bcff",
179
- "Internal": "#ee8bacff"
180
- }),
181
- gr.HighlightedText(label="Extended Sequence Classification",
182
- color_map={
183
- "INTemothou": "#c27ba0",
184
- "INTpercept": "#cc4125",
185
- "INTtime": "#e06f66",
186
- "INTplace": "#e69138",
187
- "INTevent": "#ee8bacff",
188
- "EXTsemantic": "#6ad5bc",
189
- "EXTrepetition": "#11aeb8",
190
- "EXTother": "#24aaad",
191
- }),
192
- gr.Label(label="Internal Detail Count"),
193
- gr.Label(label="External Detail Count"),
194
- gr.Label(label="Approximated Internal Detail Ratio")
195
-
196
- iface.load(fn=all, inputs=input_text, outputs=[
197
  gr.HighlightedText(label="Binary Sequence Classification",
198
  color_map={
199
  "External": "#6ad5bcff",
200
- "Internal": "#ee8bacff"
201
- }),
202
  gr.HighlightedText(label="Extended Sequence Classification",
203
  color_map={
204
  "INTemothou": "#c27ba0",
205
- "INTpercept": "#cc4125",
206
- "INTtime": "#e06f66",
207
- "INTplace": "#e69138",
208
- "INTevent": "#ee8bacff",
209
  "EXTsemantic": "#6ad5bc",
210
  "EXTrepetition": "#11aeb8",
211
  "EXTother": "#24aaad",
212
- }),
 
213
  gr.Label(label="Internal Detail Count"),
214
  gr.Label(label="External Detail Count"),
215
  gr.Label(label="Approximated Internal Detail Ratio")
216
- ])
 
 
 
 
 
217
 
218
  # Launch the combined interface
219
  iface.launch()
 
162
  ["You know, this conversation reminded me of an incredible experience I had at a music festival in college. I'll never forget it. It was a rainy day, but we didn't care, and the band that was playing was my absolute favorite. Even though we were all soaked, the crowd kept on dancing and singing along. The energy was incredible, and I remember feeling so connected to everyone around me. It was as if the rain made the whole experience even more magical. I was surrounded by friends, and we all shared this special moment together. It was one of the best moments of my life, and I still get goosebumps when I think about it. Sometimes, it's the unexpected things that create the most amazing memories, you know?"],
163
  ]
164
 
165
+ # Define Gradio interface
166
+ iface = gr.Interface(
167
+ fn=all,
168
+ 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 ..."),
169
+ outputs=[
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  gr.HighlightedText(label="Binary Sequence Classification",
171
  color_map={
172
  "External": "#6ad5bcff",
173
+ "Internal": "#ee8bacff"}
174
+ ),
175
  gr.HighlightedText(label="Extended Sequence Classification",
176
  color_map={
177
  "INTemothou": "#c27ba0",
 
 
 
 
178
  "EXTsemantic": "#6ad5bc",
179
  "EXTrepetition": "#11aeb8",
180
  "EXTother": "#24aaad",
181
+ }
182
+ ),
183
  gr.Label(label="Internal Detail Count"),
184
  gr.Label(label="External Detail Count"),
185
  gr.Label(label="Approximated Internal Detail Ratio")
186
+ ],
187
+ title="Scoring Demo",
188
+ 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.",
189
+ examples = examples,
190
+ theme= mpg_poster #"soft" #monochrome
191
+ )
192
 
193
  # Launch the combined interface
194
  iface.launch()