Merge pull request #52 from w-okada/dev

upda
This commit is contained in:
w-okada 2022-09-19 04:58:01 +09:00 committed by GitHub
commit 436751d9bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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()

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
ARG DEBIAN_FRONTEND=noninteractive