This commit is contained in:
wataru 2022-09-19 04:57:13 +09:00
parent be95a1cd50
commit d4eca778ae
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ app.add_middleware(
if MODE == "colab": if MODE == "colab":
print("ENV: 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() hubert_model = torch.hub.load("bshall/hubert:main", "hubert_soft").cuda()
acoustic_model = torch.hub.load("bshall/acoustic-model:main", "hubert_soft").cuda() acoustic_model = torch.hub.load("bshall/acoustic-model:main", "hubert_soft").cuda()

View File

@ -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 FROM debian:bullseye-slim as base
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive