Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
7deb032
1
Parent(s):
9459af9
fix
Browse files
app.py
CHANGED
@@ -40,7 +40,7 @@ import spaces
|
|
40 |
|
41 |
command = ["bash","./demo/install_mfs.sh"]
|
42 |
result = subprocess.run(command, capture_output=True, text=True)
|
43 |
-
|
44 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
45 |
|
46 |
pipe = pipeline(
|
@@ -80,6 +80,7 @@ class BaseTrainer(object):
|
|
80 |
|
81 |
command = ["mfa", "align", tmp_dir, "english_us_arpa", "english_us_arpa", tmp_dir]
|
82 |
result = subprocess.run(command, capture_output=True, text=True)
|
|
|
83 |
|
84 |
|
85 |
ap = (ssr, audio)
|
|
|
40 |
|
41 |
command = ["bash","./demo/install_mfs.sh"]
|
42 |
result = subprocess.run(command, capture_output=True, text=True)
|
43 |
+
print("debug1: ", result)
|
44 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
45 |
|
46 |
pipe = pipeline(
|
|
|
80 |
|
81 |
command = ["mfa", "align", tmp_dir, "english_us_arpa", "english_us_arpa", tmp_dir]
|
82 |
result = subprocess.run(command, capture_output=True, text=True)
|
83 |
+
print("debug2: ", result)
|
84 |
|
85 |
|
86 |
ap = (ssr, audio)
|