File size: 5,009 Bytes
eac929d c7fe985 eac929d c7fe985 eac929d c7fe985 eac929d c7fe985 eac929d c7fe985 eac929d c7fe985 eac929d 2e3dd1d c7fe985 2e3dd1d c7fe985 2e3dd1d c7fe985 2e3dd1d c7fe985 2e3dd1d c7fe985 2e3dd1d c7fe985 2e3dd1d c7fe985 2e3dd1d c7fe985 2e3dd1d eac929d c7fe985 eac929d 2e3dd1d eac929d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
import gradio as gr
from functools import partial
def truck_dropdown():
return gr.Dropdown(choices=["Road vehicle", "Train", "Aircraft", "Boat", "Other", "Unknown"], label="Collision with a means of transport", interactive=True)
def truckb_dropdown():
return gr.Dropdown(choices=["Hunting", "Trap", "Poisoning", "Removal or direct capture", "Fishing", "Other", "Unkown"], label="Destruction / Deliberatly removed", interactive=True)
def show_section_dead(visible):
with gr.Column(visible=visible) as section_dead:
gr.Markdown("# Dead")
gr.Markdown("Please describe the cause of death")
with gr.Row():
with gr.Column(scale=1, min_width="100px"):
img1 = gr.Image(value='./assets/van.png', show_download_button=False, show_label=False)
butt1 = gr.Button("Collision with a means of transport", visible=visible)
with gr.Column(scale=1, min_width="100px"):
img1 = gr.Image(value='./assets/destruction.png', show_download_button=False, show_label=False)
butt2 = gr.Button("Destruction / Deliberatly removed", visible=visible)
with gr.Row():
with gr.Column(scale=1, min_width="100px"):
img3 = gr.Image(value='./assets/indirect.png', show_download_button=False, show_label=False)
butt3 = gr.Button("Indirect destruction", visible=visible)
with gr.Column(scale=1, min_width="100px"):
img4 = gr.Image(value='./assets/natural.png', show_download_button=False, show_label=False)
butt4 = gr.Button("Natural cause", visible=visible)
with gr.Row():
dropdown = gr.Dropdown(choices=[], label="Dropdown", interactive=True, visible=visible)
return section_dead, butt1, butt2, butt3, butt4, dropdown
def show_section_wounded(visible):
#with gr.Tab("Wounded Information"):
with gr.Column(visible=visible) as wounded_section:
gr.Markdown("# Please describe the cause of wound")
with gr.Row():
with gr.Column(scale=1, min_width="100px"):
img1 = gr.Image(value='./assets/van.png', show_download_button=False, show_label=False)
butt1 = gr.Button("Collision with a means of transport")
with gr.Column(scale=1, min_width="100px"):
img1 = gr.Image(value='./assets/destruction.png', show_download_button=False, show_label=False)
butt2 = gr.Button("Destruction / Deliberatly removed")
with gr.Row():
with gr.Column(scale=1, min_width="100px"):
img3 = gr.Image(value='./assets/indirect.png', show_download_button=False, show_label=False)
butt3 = gr.Button("Indirect destruction")
with gr.Column(scale=1, min_width="100px"):
img4 = gr.Image(value='./assets/natural.png', show_download_button=False, show_label=False)
butt4 = gr.Button("Natural cause")
with gr.Row():
dropdown = gr.Dropdown(choices=[], label="Dropdown", interactive=True)
# Change variables and names
return wounded_section
with gr.Blocks() as demo:
with gr.Row():
with gr.Column(scale=1):
title = gr.Markdown("# Welcome to Digiwild", label="Title")
description = gr.Markdown("Lorem ipsum", label="description")
with gr.Row():
with gr.Column(scale=1):
camera = gr.Image()
with gr.Row() as block_form:
with gr.Column(scale=1):
butt_dead = gr.Button("Dead")
with gr.Column(scale=1):
butt_wounded = gr.Button("Wounded")
# Initiate sections
section_dead, butt1, butt2, butt3, butt4, dropdown = show_section_dead(False)
section_wounded = show_section_wounded(False)
# Dead Button Logic
partial_show_section_dead = partial(show_section_dead, True)
partial_hide_section_wounded = partial(show_section_wounded, False)
butt_dead.click(partial_show_section_dead, inputs=None, outputs=[section_dead, butt1, butt2, butt3, butt4, dropdown])
butt_dead.click(partial_hide_section_wounded, inputs=None, outputs=section_wounded)
# Wounded Button Logic
partial_show_section_wounded = partial(show_section_wounded, True)
partial_hide_section_dead = partial(show_section_dead, False)
butt_wounded.click(partial_show_section_wounded, inputs=None, outputs=section_wounded)
butt_wounded.click(partial_hide_section_dead, inputs=None, outputs=[section_dead, butt1, butt2, butt3, butt4, dropdown])
butt1.click(truck_dropdown, outputs=dropdown)
butt2.click(truckb_dropdown, outputs=dropdown)
# section_dead.
with gr.Column(scale=1):
subbutt = gr.Button("Submit")
output_message = gr.Markdown("Thank you, you didn't save this one but you could save the next")
demo.launch(server_name="0.0.0.0") |