Kangarroar commited on
Commit
24fe3ff
1 Parent(s): 61ede2f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ col2.title('Settings')
9
  ckpt = col1.file_uploader("Choose your CKPT", type='ckpt')
10
  config = col1.file_uploader("Choose your config", type='yaml')
11
  audio = col1.file_uploader("Choose your audio", type=["wav"])
12
- title = col2.number_input("Key", value="0", step=1)
13
  title2 = col2.number_input("Speedup", value="20", step=1)
14
  title3 = col2.number_input("Gender Flag", value="1.00", step=0.01, help='Default is 1.0, it works by decimals, setting it at 1.05 will make your render sound more female-ish, setting it to 0.95 will make it sound more masculine, for example.')
15
  password = col2.text_input("Enter password")
 
9
  ckpt = col1.file_uploader("Choose your CKPT", type='ckpt')
10
  config = col1.file_uploader("Choose your config", type='yaml')
11
  audio = col1.file_uploader("Choose your audio", type=["wav"])
12
+ title = col2.number_input("Key", value="0", step=1, min_value=-12, max_value=12)
13
  title2 = col2.number_input("Speedup", value="20", step=1)
14
  title3 = col2.number_input("Gender Flag", value="1.00", step=0.01, help='Default is 1.0, it works by decimals, setting it at 1.05 will make your render sound more female-ish, setting it to 0.95 will make it sound more masculine, for example.')
15
  password = col2.text_input("Enter password")