Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -195,8 +195,9 @@ def main():
|
|
195 |
|
196 |
with gr.Blocks() as demo:
|
197 |
with gr.Row():
|
198 |
-
|
199 |
-
|
|
|
200 |
|
201 |
filtered_investor_list = gr.CheckboxGroup(choices=[], label="Select Investors", visible=False)
|
202 |
graph_output = gr.Image(type="pil", label="Venture Network Graph")
|
|
|
195 |
|
196 |
with gr.Blocks() as demo:
|
197 |
with gr.Row():
|
198 |
+
# Set default value to "US" for country and "Enterprise Tech" for industry
|
199 |
+
country_filter = gr.Dropdown(choices=country_list, label="Filter by Country", value="US")
|
200 |
+
industry_filter = gr.Dropdown(choices=industry_list, label="Filter by Industry", value="Enterprise Tech")
|
201 |
|
202 |
filtered_investor_list = gr.CheckboxGroup(choices=[], label="Select Investors", visible=False)
|
203 |
graph_output = gr.Image(type="pil", label="Venture Network Graph")
|