LeonceNsh commited on
Commit
9d35bd9
·
verified ·
1 Parent(s): 89c9ef7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -195,8 +195,9 @@ def main():
195
 
196
  with gr.Blocks() as demo:
197
  with gr.Row():
198
- country_filter = gr.Dropdown(choices=country_list, label="Filter by Country", value="All")
199
- industry_filter = gr.Dropdown(choices=industry_list, label="Filter by Industry", value="All")
 
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")