cdleong commited on
Commit
f5696b6
·
verified ·
1 Parent(s): c773016

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -150,7 +150,9 @@ with gr.Blocks() as demo:
150
  sex_choice = gr.Radio(["M", "F", "Any"], label="Sex", value="Any")
151
 
152
  with gr.Row():
153
- pop_range = gr.RangeSlider(0.0, 1.0, value=[0.0, 1.0], step=0.01, label="Popularity Percentile Range (SSA)")
 
 
154
 
155
  with gr.Row():
156
  ssa_len = gr.Slider(1, 15, value=1, label="SSA Name Length (min)")
 
150
  sex_choice = gr.Radio(["M", "F", "Any"], label="Sex", value="Any")
151
 
152
  with gr.Row():
153
+ pop_low_slider = gr.Slider(0.0, 1.0, value=0.0, step=0.01, label="Popularity Percentile Min (SSA)")
154
+ pop_high_slider = gr.Slider(0.0, 1.0, value=1.0, step=0.01, label="Popularity Percentile Max (SSA)")
155
+
156
 
157
  with gr.Row():
158
  ssa_len = gr.Slider(1, 15, value=1, label="SSA Name Length (min)")