Hmjz100 commited on
Commit
fcc2727
1 Parent(s): d2b84c6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -4
app.py CHANGED
@@ -36,9 +36,14 @@ 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
- 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
44
  from mt3 import network
@@ -315,4 +320,4 @@ gr.Interface(
315
  description=description,
316
  article=article,
317
  examples=examples
318
- ).launch(server_port=7861)
 
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")
41
+ print(f"[{current_time()}] 日志:文件 - 移动 mt3_tmp 目录的所有文件到 当前目录")
42
+ os.system("mv mt3_tmp/* .")
43
+ print(f"[{current_time()}] 日志:文件 - 删除 mt3_tmp 目录")
44
+ os.system("rm -r mt3_tmp")
45
+
46
+ print(f"[{current_time()}] 日志:导入 - 从 mt3 目录中导入必要工具")
47
  from mt3 import metrics_utils
48
  from mt3 import models
49
  from mt3 import network
 
320
  description=description,
321
  article=article,
322
  examples=examples
323
+ ).launch()