Spaces:
Running
Running
Commit
·
012ba37
1
Parent(s):
852c2a1
legend update
Browse files
app.py
CHANGED
@@ -476,6 +476,8 @@ def sub_ex(*inputs):
|
|
476 |
out = inputs
|
477 |
return out
|
478 |
|
|
|
|
|
479 |
|
480 |
def create_timeline_plot(data: List[Dict[str, Any]]):
|
481 |
df = pd.DataFrame(data)
|
@@ -548,8 +550,10 @@ with gr.Blocks(head=shortcut_js,
|
|
548 |
placeholder="Enter text here...")
|
549 |
text_btn = gr.Button('Run')
|
550 |
with gr.Column():
|
551 |
-
gr.
|
552 |
-
|
|
|
|
|
553 |
gr.Examples(text_examples, inputs=text_input)
|
554 |
with gr.Tab("Patient Visualization"):
|
555 |
gr.Markdown(vis_desc)
|
@@ -667,8 +671,13 @@ with gr.Blocks(head=shortcut_js,
|
|
667 |
outputs=text_input
|
668 |
)
|
669 |
|
670 |
-
text_input.submit(process, inputs=text_input, outputs=text_out)
|
671 |
-
text_btn.click(process, inputs=text_input, outputs=text_out)
|
|
|
|
|
|
|
|
|
|
|
672 |
upload.change(update_inputs, inputs=upload, outputs=sum_inputs)
|
673 |
ex_add.click(add_ex, inputs=sum_inputs, outputs=sum_inputs)
|
674 |
ex_sub.click(sub_ex, inputs=sum_inputs, outputs=sum_inputs)
|
|
|
476 |
out = inputs
|
477 |
return out
|
478 |
|
479 |
+
def show_legend(show_legend):
|
480 |
+
return gr.update(show_legend=show_legend)
|
481 |
|
482 |
def create_timeline_plot(data: List[Dict[str, Any]]):
|
483 |
df = pd.DataFrame(data)
|
|
|
550 |
placeholder="Enter text here...")
|
551 |
text_btn = gr.Button('Run')
|
552 |
with gr.Column():
|
553 |
+
with gr.Row():
|
554 |
+
gr.Markdown("## Labeled Summary or Note")
|
555 |
+
show_legend_checkbox = gr.Checkbox(label="Show Legend", value=True,)
|
556 |
+
text_out = gr.Highlight(label="", combine_adjacent=True, show_legend=True, color_map=color_map)
|
557 |
gr.Examples(text_examples, inputs=text_input)
|
558 |
with gr.Tab("Patient Visualization"):
|
559 |
gr.Markdown(vis_desc)
|
|
|
671 |
outputs=text_input
|
672 |
)
|
673 |
|
674 |
+
text_input.submit(process, inputs=[text_input], outputs=text_out)
|
675 |
+
text_btn.click(process, inputs=[text_input], outputs=text_out)
|
676 |
+
show_legend_checkbox.change(
|
677 |
+
show_legend,
|
678 |
+
inputs=[show_legend_checkbox],
|
679 |
+
outputs=text_out
|
680 |
+
)
|
681 |
upload.change(update_inputs, inputs=upload, outputs=sum_inputs)
|
682 |
ex_add.click(add_ex, inputs=sum_inputs, outputs=sum_inputs)
|
683 |
ex_sub.click(sub_ex, inputs=sum_inputs, outputs=sum_inputs)
|