Spaces:
Running
Running
Upload app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,6 @@ os.system("python3 -m pip install -e .")
|
|
25 |
print(f"[{current_time()}] 日志:Python - 更新 Python 包管理器 pip")
|
26 |
os.system("python3 -m pip install --upgrade pip")
|
27 |
|
28 |
-
|
29 |
# 安装 mt3
|
30 |
print(f"[{current_time()}] 日志:Git - 克隆 Github 的 MT3 模型到当前目录")
|
31 |
os.system("git clone --branch=main https://github.com/magenta/mt3")
|
@@ -44,6 +43,14 @@ os.system("gsutil -q -m cp -r gs://mt3/checkpoints .")
|
|
44 |
print(f"[{current_time()}] 日志:gsutil - 复制 SoundFont 文件到当前目录")
|
45 |
os.system("gsutil -q -m cp gs://magentadata/soundfonts/SGM-v2.01-Sal-Guit-Bass-V1.3.sf2 .")
|
46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
#@title 导入和定义
|
48 |
print(f"[{current_time()}] 日志:导入 - 必要工具")
|
49 |
import functools
|
|
|
25 |
print(f"[{current_time()}] 日志:Python - 更新 Python 包管理器 pip")
|
26 |
os.system("python3 -m pip install --upgrade pip")
|
27 |
|
|
|
28 |
# 安装 mt3
|
29 |
print(f"[{current_time()}] 日志:Git - 克隆 Github 的 MT3 模型到当前目录")
|
30 |
os.system("git clone --branch=main https://github.com/magenta/mt3")
|
|
|
43 |
print(f"[{current_time()}] 日志:gsutil - 复制 SoundFont 文件到当前目录")
|
44 |
os.system("gsutil -q -m cp gs://magentadata/soundfonts/SGM-v2.01-Sal-Guit-Bass-V1.3.sf2 .")
|
45 |
|
46 |
+
# 安装 airio
|
47 |
+
print(f"[{current_time()}] 日志:Git - 克隆 Github 的 airio 到当前目录")
|
48 |
+
os.system("git clone --branch=main https://github.com/google/airio")
|
49 |
+
print(f"[{current_time()}] 日志:文件 - 移动 airio 到当前目录并重命名为 airio_tmp 并删除")
|
50 |
+
os.system("mv airio airio_tmp; mv airio_tmp/* .; rm -r airio_tmp")
|
51 |
+
print(f"[{current_time()}] 日志:Python - 使用 pip 安装 当前目录内的 Python 包")
|
52 |
+
os.system("python3 -m pip install -e .")
|
53 |
+
|
54 |
#@title 导入和定义
|
55 |
print(f"[{current_time()}] 日志:导入 - 必要工具")
|
56 |
import functools
|