Update app.py
Browse files
app.py
CHANGED
@@ -26,7 +26,7 @@ def init():
|
|
26 |
# print(key_list)
|
27 |
return(gr.update(label="Voice",choices=key_list,value="lb_LU-marylux-medium",interactive=True))
|
28 |
|
29 |
-
def new_load_mod(instr
|
30 |
model=instr
|
31 |
lang=instr.split("_")[0]
|
32 |
dia=instr.split("-")[0]
|
@@ -34,6 +34,7 @@ def new_load_mod(instr="en_US-joe-medium"):
|
|
34 |
style=instr.split("-")[2]
|
35 |
file=f'{instr}.onnx'
|
36 |
print(f"Loading model: {file}")
|
|
|
37 |
if not os.path.isfile(f'{os.getcwd()}/voices/{file}'):
|
38 |
print(f"Model not found locally")
|
39 |
m_path= f"https://huggingface.co/rhasspy/piper-voices/resolve/main/{lang}/{dia}/{name}/{style}/{file}"
|
|
|
26 |
# print(key_list)
|
27 |
return(gr.update(label="Voice",choices=key_list,value="lb_LU-marylux-medium",interactive=True))
|
28 |
|
29 |
+
def new_load_mod(instr):
|
30 |
model=instr
|
31 |
lang=instr.split("_")[0]
|
32 |
dia=instr.split("-")[0]
|
|
|
34 |
style=instr.split("-")[2]
|
35 |
file=f'{instr}.onnx'
|
36 |
print(f"Loading model: {file}")
|
37 |
+
print(f"os-path: {os.path}")
|
38 |
if not os.path.isfile(f'{os.getcwd()}/voices/{file}'):
|
39 |
print(f"Model not found locally")
|
40 |
m_path= f"https://huggingface.co/rhasspy/piper-voices/resolve/main/{lang}/{dia}/{name}/{style}/{file}"
|