AlGe commited on
Commit
5a5168a
·
verified ·
1 Parent(s): 5f3023e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +34 -108
app.py CHANGED
@@ -162,111 +162,37 @@ 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
- import gradio as gr
166
-
167
- # Define content for each section
168
- intro_content = """
169
- # Introduction
170
- This section provides an overview of the project...
171
- """
172
-
173
- method_content = """
174
- # Method
175
- This section describes the methodology used in the project...
176
- """
177
-
178
- demo_content = """
179
- # Demo
180
- Here, you can interact with the demo...
181
- """
182
-
183
- conclusion_content = """
184
- # Conclusion
185
- This section summarizes the findings and conclusions...
186
- """
187
-
188
- # Define the demo function
189
- def all(input_text):
190
- # Simulated processing for the demo
191
- binary_classification = [("Some text", "External")]
192
- extended_classification = [("More text", "INTevent")]
193
- internal_count = 3
194
- external_count = 2
195
- internal_ratio = 0.6
196
- return binary_classification, extended_classification, internal_count, external_count, internal_ratio
197
-
198
- # Create the interface using Blocks
199
- with gr.Blocks() as iface:
200
- # Custom CSS for styling
201
- gr.Markdown("""
202
- <style>
203
- .navbar {
204
- overflow: hidden;
205
- background-color: #333;
206
- position: fixed;
207
- top: 0;
208
- width: 100%;
209
- z-index: 1000;
210
- }
211
- .navbar a {
212
- float: left;
213
- display: block;
214
- color: #f2f2f2;
215
- text-align: center;
216
- padding: 14px 16px;
217
- text-decoration: none;
218
- font-size: 17px;
219
- }
220
- .navbar a:hover {
221
- background-color: #ddd;
222
- color: black;
223
- }
224
- .section {
225
- padding: 16px;
226
- margin-top: 50px;
227
- }
228
- </style>
229
- """)
230
-
231
- # Navbar
232
- gr.Markdown("""
233
- <div class="navbar">
234
- <a href="#intro">Intro</a>
235
- <a href="#method">Method</a>
236
- <a href="#demo">Demo</a>
237
- <a href="#conclusion">Conclusion</a>
238
- </div>
239
- """)
240
-
241
- # Sections
242
- with gr.Column():
243
- gr.Markdown('<div id="intro" class="section">' + intro_content + '</div>')
244
- gr.Markdown('<div id="method" class="section">' + method_content + '</div>')
245
- gr.Markdown('<div id="demo" class="section">' + demo_content + '</div>')
246
-
247
- with gr.Row():
248
- 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 ...")
249
- binary_output = gr.HighlightedText(label="Binary Sequence Classification", color_map={"External": "#6ad5bcff", "Internal": "#ee8bacff"})
250
- extended_output = gr.HighlightedText(label="Extended Sequence Classification", color_map={
251
- "INTemothou": "#c27ba0",
252
- "INTpercept": "#cc4125",
253
- "INTtime": "#e06f66",
254
- "INTplace": "#e69138",
255
- "INTevent": "#ee8bacff",
256
- "EXTsemantic": "#6ad5bc",
257
- "EXTrepetition": "#11aeb8",
258
- "EXTother": "#24aaad",
259
- })
260
- internal_count_output = gr.Label(label="Internal Detail Count")
261
- external_count_output = gr.Label(label="External Detail Count")
262
- internal_ratio_output = gr.Label(label="Approximated Internal Detail Ratio")
263
-
264
- submit_button = gr.Button("Submit")
265
-
266
- submit_button.click(all, inputs=[input_text], outputs=[binary_output, extended_output, internal_count_output, external_count_output, internal_ratio_output])
267
-
268
- gr.Markdown('<div id="conclusion" class="section">' + conclusion_content + '</div>')
269
-
270
- # Launch the interface
271
- iface.launch()
272
-
 
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
+ "INTpercept": "#cc4125",
179
+ "INTtime": "#e06f66",
180
+ "INTplace": "#e69138",
181
+ "INTevent": "#ee8bacff",
182
+ "EXTsemantic": "#6ad5bc",
183
+ "EXTrepetition": "#11aeb8",
184
+ "EXTother": "#24aaad",
185
+ }
186
+ ),
187
+ gr.Label(label="Internal Detail Count"),
188
+ gr.Label(label="External Detail Count"),
189
+ gr.Label(label="Approximated Internal Detail Ratio")
190
+ ],
191
+ title="Scoring Demo",
192
+ 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.",
193
+ examples =examples,
194
+ theme= mpg_poster #"soft" #monochrome
195
+ )
196
+
197
+ # Launch the combined interface
198
+ iface.launch()