Spaces:
Runtime error
Runtime error
Kangarroar
commited on
Commit
·
61b363b
1
Parent(s):
2211b00
Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,11 @@ title3 = col2.number_input("Gender Flag", value=1.00, step=0.01, min_value=0.70,
|
|
15 |
choice = col2.selectbox('Resampler', ('Crepe', 'Harvest'))
|
16 |
# Create checkbox for using Mel as Base
|
17 |
use_mel_as_base = col2.checkbox('Use Mel as Base', value=False, help='gt mel: Enabling this will use the input audio as a base and will unlock a new parameter, do not use this if you dont know what it does.')
|
|
|
|
|
|
|
18 |
|
|
|
19 |
# Show "Noise Step" input parameter when checkbox is checked
|
20 |
if use_mel_as_base:
|
21 |
noise_step = col2.number_input('Noise Step', value=600, min_value=1, max_value=1000, step=50)
|
|
|
15 |
choice = col2.selectbox('Resampler', ('Crepe', 'Harvest'))
|
16 |
# Create checkbox for using Mel as Base
|
17 |
use_mel_as_base = col2.checkbox('Use Mel as Base', value=False, help='gt mel: Enabling this will use the input audio as a base and will unlock a new parameter, do not use this if you dont know what it does.')
|
18 |
+
option = st.selectbox(
|
19 |
+
'How would you like to be contacted?',
|
20 |
+
('Email', 'Home phone', 'Mobile phone'))
|
21 |
|
22 |
+
st.write('You selected:', option)
|
23 |
# Show "Noise Step" input parameter when checkbox is checked
|
24 |
if use_mel_as_base:
|
25 |
noise_step = col2.number_input('Noise Step', value=600, min_value=1, max_value=1000, step=50)
|