Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -36,6 +36,8 @@ os.system("python3 -m pip install -e .")
|
|
36 |
|
37 |
print(f"[{current_time()}] 日志:Git - 克隆 Github 的 MT3 模型到当前目录")
|
38 |
os.system("git clone --branch=main https://github.com/magenta/mt3")
|
|
|
|
|
39 |
|
40 |
from mt3 import metrics_utils
|
41 |
from mt3 import models
|
@@ -45,10 +47,8 @@ from mt3 import preprocessors
|
|
45 |
from mt3 import spectrograms
|
46 |
from mt3 import vocabularies
|
47 |
|
48 |
-
print(f"[{current_time()}] 日志:文件 - 移动 mt3 到当前目录并重命名为 mt3_tmp 并删除")
|
49 |
-
os.system("mv mt3 mt3_tmp; mv mt3_tmp/* .; rm -r mt3_tmp")
|
50 |
print(f"[{current_time()}] 日志:Python - 使用 pip 从 storage.googleapis.com 安装 jax[cuda11_local] nest-asyncio pyfluidsynth")
|
51 |
-
os.system("python3 -m pip install jax[
|
52 |
print(f"[{current_time()}] 日志:安装 - 更新 jaxlib")
|
53 |
os.system("pip install --upgrade jaxlib")
|
54 |
print(f"[{current_time()}] 日志:Python - 使用 pip 安装 当前目录内的 Python 包")
|
|
|
36 |
|
37 |
print(f"[{current_time()}] 日志:Git - 克隆 Github 的 MT3 模型到当前目录")
|
38 |
os.system("git clone --branch=main https://github.com/magenta/mt3")
|
39 |
+
print(f"[{current_time()}] 日志:文件 - 移动 mt3 到当前目录并重命名为 mt3_tmp 并删除")
|
40 |
+
os.system("mv mt3 mt3_tmp; mv mt3_tmp/* .; rm -r mt3_tmp")
|
41 |
|
42 |
from mt3 import metrics_utils
|
43 |
from mt3 import models
|
|
|
47 |
from mt3 import spectrograms
|
48 |
from mt3 import vocabularies
|
49 |
|
|
|
|
|
50 |
print(f"[{current_time()}] 日志:Python - 使用 pip 从 storage.googleapis.com 安装 jax[cuda11_local] nest-asyncio pyfluidsynth")
|
51 |
+
os.system("python3 -m pip install jax[cuda12_local] nest-asyncio pyfluidsynth==1.3.0 -e . -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html")
|
52 |
print(f"[{current_time()}] 日志:安装 - 更新 jaxlib")
|
53 |
os.system("pip install --upgrade jaxlib")
|
54 |
print(f"[{current_time()}] 日志:Python - 使用 pip 安装 当前目录内的 Python 包")
|