Spaces:
Runtime error
Runtime error
change component
Browse files
app.py
CHANGED
|
@@ -122,8 +122,17 @@ def main():
|
|
| 122 |
audience_main_id = gr.Textbox(label="Main LINE Audience")
|
| 123 |
option = gr.Radio(label="Select Option", choices=["Single message","Single Image map", "Image map with text", "Text with Image map"])
|
| 124 |
gender = gr.CheckboxGroup(["Male", "Female"], label="Gender")
|
| 125 |
-
|
| 126 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 127 |
system = gr.CheckboxGroup(["ios", "Android"], info="Select Mobile system", label='Mobile System')
|
| 128 |
region = gr.CheckboxGroup(['Bangkok', 'Pattaya', 'Northern', 'Central', 'Southern', 'Eastern', 'NorthEastern', 'Western'], label="Thailand Region", info="Select Thailand Region")
|
| 129 |
|
|
|
|
| 122 |
audience_main_id = gr.Textbox(label="Main LINE Audience")
|
| 123 |
option = gr.Radio(label="Select Option", choices=["Single message","Single Image map", "Image map with text", "Text with Image map"])
|
| 124 |
gender = gr.CheckboxGroup(["Male", "Female"], label="Gender")
|
| 125 |
+
|
| 126 |
+
age_min = gr.Textbox(label="Age Min")
|
| 127 |
+
age_max= gr.Textbox(label="Age Min")
|
| 128 |
+
age = gr.Row(age_min, age_max)
|
| 129 |
+
# age = gr.Slider(minimum=15, maximum=70, step=15,label='Age', info="Choose age range", interactive=True)
|
| 130 |
+
|
| 131 |
+
friend_duration_min = gr.Textbox(label="Friend Duration Min")
|
| 132 |
+
friend_duration_max = gr.Textbox(label="Friend Duration Max")
|
| 133 |
+
friend_duration = gr.Row(friend_duration_min, friend_duration_max)
|
| 134 |
+
# friend_duration = gr.Slider(minimum=30, maximum=180, step=30, label="Friend Duration", info="Choose friend duration", randomize=True)
|
| 135 |
+
|
| 136 |
system = gr.CheckboxGroup(["ios", "Android"], info="Select Mobile system", label='Mobile System')
|
| 137 |
region = gr.CheckboxGroup(['Bangkok', 'Pattaya', 'Northern', 'Central', 'Southern', 'Eastern', 'NorthEastern', 'Western'], label="Thailand Region", info="Select Thailand Region")
|
| 138 |
|