Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -140,8 +140,8 @@ with gr.Blocks(title=title, theme=theme) as demo:
|
|
| 140 |
IBU = Slider(label="IBU", minimum=0.0, maximum=200, value=41, step=1)
|
| 141 |
Style = Dropdown(choices=style_choices, label="Beer Style", value='IPA - Session')
|
| 142 |
BreweryStyle = Dropdown(choices=brewery_style_choices, label="Brewery Style", value='Micro Brewery')
|
| 143 |
-
Region = Dropdown(choices=region_choices, label="USA Region", value='
|
| 144 |
-
State = Dropdown(choices=state_choices, label="State", value='
|
| 145 |
Flavor_Group = CheckboxGroup(choices=flavors_list, label="Flavors")
|
| 146 |
Hop_Group = CheckboxGroup(choices=hops_list, label="Hops")
|
| 147 |
|
|
|
|
| 140 |
IBU = Slider(label="IBU", minimum=0.0, maximum=200, value=41, step=1)
|
| 141 |
Style = Dropdown(choices=style_choices, label="Beer Style", value='IPA - Session')
|
| 142 |
BreweryStyle = Dropdown(choices=brewery_style_choices, label="Brewery Style", value='Micro Brewery')
|
| 143 |
+
Region = Dropdown(choices=region_choices, label="USA Region", value='Mideast')
|
| 144 |
+
State = Dropdown(choices=state_choices, label="State", value='VA')
|
| 145 |
Flavor_Group = CheckboxGroup(choices=flavors_list, label="Flavors")
|
| 146 |
Hop_Group = CheckboxGroup(choices=hops_list, label="Hops")
|
| 147 |
|