From d4eca778ae33d551e5e5b61709b74f5f55f31fa7 Mon Sep 17 00:00:00 2001 From: wataru Date: Mon, 19 Sep 2022 04:57:13 +0900 Subject: [PATCH] upda --- demo/SoftVcServerFastAPI.py | 2 +- trainer/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/demo/SoftVcServerFastAPI.py b/demo/SoftVcServerFastAPI.py index b58e4d4e..7c03a75b 100755 --- a/demo/SoftVcServerFastAPI.py +++ b/demo/SoftVcServerFastAPI.py @@ -33,7 +33,7 @@ app.add_middleware( if MODE == "colab": print("ENV: colab") - app.mount("/front", StaticFiles(directory="voice-changer/frontend/dist", html=True), name="static") + app.mount("/front", StaticFiles(directory="../frontend/dist", html=True), name="static") hubert_model = torch.hub.load("bshall/hubert:main", "hubert_soft").cuda() acoustic_model = torch.hub.load("bshall/acoustic-model:main", "hubert_soft").cuda() diff --git a/trainer/Dockerfile b/trainer/Dockerfile index d276d2ae..ffb60bbc 100644 --- a/trainer/Dockerfile +++ b/trainer/Dockerfile @@ -1,4 +1,4 @@ -FROM dannadori/voice-changer-internal:20220919_043748 as front +FROM dannadori/voice-changer-internal:20220919_045352 as front FROM debian:bullseye-slim as base ARG DEBIAN_FRONTEND=noninteractive