Spaces:
Runtime error
Runtime error
Commit
·
a780c5a
1
Parent(s):
35c5168
Update app.py
Browse files
app.py
CHANGED
|
@@ -10,7 +10,11 @@ os.system("pip install pysptk --no-build-isolation")
|
|
| 10 |
os.system("pip install kantts -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html")
|
| 11 |
os.system("pip install tts-autolabel -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html")
|
| 12 |
|
|
|
|
|
|
|
| 13 |
|
|
|
|
|
|
|
| 14 |
|
| 15 |
def refresh():
|
| 16 |
return gr.update(choices=get_dataset_list()), gr.update(choices=get_model_list())
|
|
|
|
| 10 |
os.system("pip install kantts -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html")
|
| 11 |
os.system("pip install tts-autolabel -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html")
|
| 12 |
|
| 13 |
+
def auto_label(a, b):
|
| 14 |
+
return "this is", "a test"
|
| 15 |
|
| 16 |
+
def delete_dataset():
|
| 17 |
+
return "test"
|
| 18 |
|
| 19 |
def refresh():
|
| 20 |
return gr.update(choices=get_dataset_list()), gr.update(choices=get_model_list())
|