mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-01-23 13:35:12 +03:00
beta01
This commit is contained in:
parent
275c008a61
commit
552303e075
@ -4,7 +4,8 @@
|
|||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build:docker": "date +%Y%m%d%H%M%S > trainer/dummy && DOCKER_BUILDKIT=1 docker build --ssh default -f trainer/Dockerfile trainer/ -t mmvc_trainer_docker",
|
"build:docker": "date +%Y%m%d%H%M%S > trainer/dummy && DOCKER_BUILDKIT=1 docker build -f trainer/Dockerfile trainer/ -t voice-changer",
|
||||||
|
"push:docker": "bash script/001_pushDocker.sh",
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
|
7
script/001_pushDocker.sh
Normal file
7
script/001_pushDocker.sh
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
data_tag=`date +%Y%m%d_%H%M%S`
|
||||||
|
docker login
|
||||||
|
|
||||||
|
docker tag voice-changer dannadori/voice-changer:$data_tag
|
||||||
|
docker push dannadori/voice-changer:$data_tag
|
6
start.sh
6
start.sh
@ -7,7 +7,9 @@ docker run -it --gpus all --shm-size=2g \
|
|||||||
-v `pwd`/exp/${EXP_NAME}/dataset:/MMVC_Trainer/dataset \
|
-v `pwd`/exp/${EXP_NAME}/dataset:/MMVC_Trainer/dataset \
|
||||||
-v `pwd`/exp/${EXP_NAME}/logs:/MMVC_Trainer/logs \
|
-v `pwd`/exp/${EXP_NAME}/logs:/MMVC_Trainer/logs \
|
||||||
-v `pwd`/exp/${EXP_NAME}/filelists:/MMVC_Trainer/filelists \
|
-v `pwd`/exp/${EXP_NAME}/filelists:/MMVC_Trainer/filelists \
|
||||||
-v `pwd`/exp/${EXP_NAME}/filelists:/voice-changer-internal/voice-change-service/filelists
|
-v `pwd`/vc_resources:/resources \
|
||||||
-e LOCAL_UID=$(id -u $USER) \
|
-e LOCAL_UID=$(id -u $USER) \
|
||||||
-e LOCAL_GID=$(id -g $USER) \
|
-e LOCAL_GID=$(id -g $USER) \
|
||||||
-p 6008:6006 mmvc_trainer_docker "$@"
|
-p 6008:6006 -p 8081:8080 mmvc_trainer_docker "$@"
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
FROM dannadori/voice-changer-internal:20220823_035121 as front
|
||||||
FROM debian:bullseye-slim as base
|
FROM debian:bullseye-slim as base
|
||||||
|
|
||||||
ARG DEBIAN_FRONTEND=noninteractive
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
@ -36,64 +37,25 @@ RUN cythonize -3 -i core.pyx \
|
|||||||
|
|
||||||
FROM debian:bullseye-slim
|
FROM debian:bullseye-slim
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y python3-pip espeak gosu\
|
&& apt-get install -y python3-pip espeak gosu libsndfile1-dev\
|
||||||
&& apt-get clean \
|
&& apt-get clean \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
COPY --from=base /usr/local/lib/python3.9/dist-packages /usr/local/lib/python3.9/dist-packages
|
### Copy local resource
|
||||||
COPY --from=base /MMVC_Trainer /MMVC_Trainer
|
|
||||||
|
|
||||||
COPY fine_model/G_180000.pth /MMVC_Trainer/fine_model/G_180000.pth
|
COPY fine_model/G_180000.pth /MMVC_Trainer/fine_model/G_180000.pth
|
||||||
COPY fine_model/D_180000.pth /MMVC_Trainer/fine_model/D_180000.pth
|
COPY fine_model/D_180000.pth /MMVC_Trainer/fine_model/D_180000.pth
|
||||||
|
|
||||||
# RUN groupadd -g 61000 docker
|
### Copy from base
|
||||||
# RUN useradd -g 61000 -l -m -s /bin/false -u 61000 docker
|
COPY --from=base --chmod=777 /usr/local/lib/python3.9/dist-packages /usr/local/lib/python3.9/dist-packages
|
||||||
# USER docker
|
COPY --from=base --chmod=777 /MMVC_Trainer /MMVC_Trainer
|
||||||
|
|
||||||
WORKDIR /MMVC_Trainer
|
WORKDIR /MMVC_Trainer
|
||||||
ADD /setup.sh /MMVC_Trainer/
|
ADD /setup.sh /MMVC_Trainer/
|
||||||
ADD /exec.sh /MMVC_Trainer/
|
ADD /exec.sh /MMVC_Trainer/
|
||||||
RUN chmod 0777 . -R
|
|
||||||
# RUN chmod 0777 exec.sh
|
|
||||||
# RUN chmod 0666 train_ms.py
|
|
||||||
RUN chmod 0777 /usr/local/lib/python3.9/dist-packages/pyopenjtalk
|
|
||||||
|
|
||||||
|
### Copy from frontend
|
||||||
|
COPY --from=front --chmod=777 /voice-changer-internal/frontend/dist /voice-changer-internal/frontend/dist
|
||||||
|
COPY --from=front --chmod=777 /voice-changer-internal/voice-change-service /voice-changer-internal/voice-change-service
|
||||||
|
RUN chmod 0777 /voice-changer-internal/voice-change-service
|
||||||
ENTRYPOINT ["/bin/bash", "setup.sh"]
|
ENTRYPOINT ["/bin/bash", "setup.sh"]
|
||||||
CMD [ "-h"]
|
CMD [ "-h"]
|
||||||
|
|
||||||
# FROM ubuntu:focal-20220531 as base
|
|
||||||
|
|
||||||
# ARG DEBIAN_FRONTEND=noninteractive
|
|
||||||
|
|
||||||
# RUN apt-get update && apt-get install -y libfreetype6-dev g++ cmake sox libsndfile1-dev ffmpeg flac python3-pip
|
|
||||||
# RUN apt-get install -y git emacs mlocate curl wget unzip
|
|
||||||
|
|
||||||
# RUN git clone https://github.com/isletennos/MMVC_Trainer.git
|
|
||||||
|
|
||||||
# RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
|
|
||||||
# sh Miniconda3-latest-Linux-x86_64.sh -b -p /opt/miniconda3 && \
|
|
||||||
# rm -r Miniconda3-latest-Linux-x86_64.sh
|
|
||||||
|
|
||||||
# ENV PATH /opt/miniconda3/bin:$PATH
|
|
||||||
# RUN pip install --upgrade pip && \
|
|
||||||
# conda update conda && \
|
|
||||||
# conda create -n mmvc -c defaults python=3.7 && \
|
|
||||||
# conda init && \
|
|
||||||
# echo "conda activate mmvc" >> ~/.bashrc
|
|
||||||
|
|
||||||
# SHELL ["conda", "run", "-n", "mmvc", "/bin/bash", "-c"]
|
|
||||||
|
|
||||||
# ENV CONDA_DEFAULT_ENV mmvc && \
|
|
||||||
# PATH /opt/conda/envs/mmvc/bin:$PATH
|
|
||||||
|
|
||||||
# RUN pip install pyopenjtalk
|
|
||||||
# RUN pip install Cython==0.29.21 librosa==0.8.0 matplotlib==3.3.1 numpy phonemizer==2.2.1 scipy==1.5.2 tensorboard Unidecode==1.1.1 retry tqdm resampy==0.2.2
|
|
||||||
# RUN pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu113
|
|
||||||
|
|
||||||
# RUN pip install psutil
|
|
||||||
|
|
||||||
# COPY fine_model/G_180000.pth /MMVC_Trainer/fine_model/G_180000.pth
|
|
||||||
# COPY fine_model/D_180000.pth /MMVC_Trainer/fine_model/D_180000.pth
|
|
||||||
|
|
||||||
# WORKDIR /MMVC_Trainer
|
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ config=
|
|||||||
model=
|
model=
|
||||||
|
|
||||||
# オプション解析
|
# オプション解析
|
||||||
while getopts tb:rvc:m:h OPT; do
|
while getopts tb:rvm:c:h OPT; do
|
||||||
case $OPT in
|
case $OPT in
|
||||||
t)
|
t)
|
||||||
training_flag=true
|
training_flag=true
|
||||||
@ -106,17 +106,22 @@ if $training_flag; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# if $voice_change_flag; then
|
if $voice_change_flag; then
|
||||||
# if [[ -z "$config" ]]; then
|
if [[ -z "$config" ]]; then
|
||||||
# warn "コンフィグファイル(-c)を指定してください"
|
warn "コンフィグファイル(-c)を指定してください"
|
||||||
# fi
|
fi
|
||||||
# if [[ -z "$model" ]]; then
|
if [[ -z "$model" ]]; then
|
||||||
# warn "モデルファイル(-m)を指定してください"
|
warn "モデルファイル(-m)を指定してください"
|
||||||
# fi
|
fi
|
||||||
|
|
||||||
# cp -r /resources/* .
|
cd /voice-changer-internal/voice-change-service
|
||||||
# if [[ -e ./setting.json ]]; then
|
|
||||||
# cp ./setting.json ../frontend/dist/assets/setting.json
|
cp -r /resources/* .
|
||||||
# fi
|
if [[ -e ./setting.json ]]; then
|
||||||
# python3 serverSIO.py 8080 $config $model
|
cp ./setting.json ../frontend/dist/assets/setting.json
|
||||||
# fi
|
fi
|
||||||
|
echo "-----------!!"
|
||||||
|
echo $config $model
|
||||||
|
echo $model
|
||||||
|
python3 serverSIO.py 8080 $config $model
|
||||||
|
fi
|
||||||
|
@ -14,5 +14,7 @@ useradd -u $USER_ID -o -m user
|
|||||||
groupmod -g $GROUP_ID user
|
groupmod -g $GROUP_ID user
|
||||||
|
|
||||||
#su user
|
#su user
|
||||||
echo "parameter: $@"
|
# echo "parameter: $@"
|
||||||
exec /usr/sbin/gosu user /bin/bash exec.sh "$@"
|
# exec /usr/sbin/gosu user /bin/bash exec.sh "$@"
|
||||||
|
/bin/bash
|
||||||
|
|
||||||
|
2
vc_resources/.gitignore
vendored
Normal file
2
vc_resources/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
*
|
||||||
|
!.gitignore
|
Loading…
Reference in New Issue
Block a user