File size: 1,641 Bytes
a62bbf7 |
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 |
import gradio as gr
def dropdown_collision():
return gr.Dropdown(choices=["Road vehicle", "Train", "Aircraft", "Boat", "Other", "Unknown"], label="Collision with a means of transport", interactive=True)
def dropdown_deliberate_destruction():
return gr.Dropdown(choices=["Hunting", "Trap", "Poisoning", "Removal or direct capture", "Fishing", "Other", "Unkown"], label="Destruction / Deliberatly removed", interactive=True)
def dropdown_indirect_destruction():
return gr.Dropdown(choices=["pylone and electric grid",
"windfarm",
"other collision",
"fall",
"development work",
"pollution / contamination",
"agricultural net protection",
"vegetal / forest work",
"other",
"unknown"
], label="Indirect destruction", interactive=True)
def dropdown_natural_cause():
return gr.Dropdown(choices=["predation",
"weather",
"natural disaster",
"nest fall",
"stranding due to exhaustion",
"disease/parasite",
"accidental drowning",
"other",
"unknown"
], label="Indirect destruction", interactive=True)
|