update to ver.2.0.0

This commit is contained in:
wataru 2022-11-11 02:06:54 +09:00
parent 58a961ac8e
commit 6d34987604
14 changed files with 8 additions and 69 deletions

View File

@ -1,4 +1,4 @@
FROM dannadori/voice-changer-internal:20221108_184110 as front FROM dannadori/voice-changer-internal:20221109_051139 as front
FROM debian:bullseye-slim as base FROM debian:bullseye-slim as base
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-help-circle"><circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12.01" y2="17"></line></svg>

After

Width:  |  Height:  |  Size: 365 B

BIN
docs/assets/icons/zun.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -2,6 +2,9 @@
"app_title": "voice-recorder", "app_title": "voice-recorder",
"storage_type":"local", "storage_type":"local",
"use_mel_spectrogram":true, "use_mel_spectrogram":true,
"current_text":"ITA-emotion",
"current_text_index":0,
"sample_rate":48000,
"text": [ "text": [
{ {
"title": "ITA-emotion", "title": "ITA-emotion",

File diff suppressed because one or more lines are too long

View File

@ -5,12 +5,6 @@
(c) 2013-2017 Mozilla, Apache License 2.0 (c) 2013-2017 Mozilla, Apache License 2.0
*/ */
/*!
* Font Awesome Free 6.1.2 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
* Copyright 2022 Fonticons, Inc.
*/
/*! /*!
* The buffer module from node.js, for the browser. * The buffer module from node.js, for the browser.
* *
@ -19,7 +13,7 @@
*/ */
/*! /*!
* wavesurfer.js 6.2.0 (2022-05-16) * wavesurfer.js 6.4.0 (2022-11-05)
* https://wavesurfer-js.org * https://wavesurfer-js.org
* @license BSD-3-Clause * @license BSD-3-Clause
*/ */

2
exp/.gitignore vendored
View File

@ -1,2 +0,0 @@
*
!.gitignore

View File

@ -4,7 +4,7 @@
"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 -f trainer/Dockerfile trainer/ -t voice-changer", "build:docker": "date +%Y%m%d%H%M%S > docker/dummy && DOCKER_BUILDKIT=1 docker build -f docker/Dockerfile docker/ -t voice-changer",
"copy:frontend":"docker run -v `pwd`/frontend/dist:/frontend/dist --entrypoint /bin/bash -ti voice-changer -c \"cp -r /voice-changer-internal/frontend/dist/* /frontend/dist\"", "copy:frontend":"docker run -v `pwd`/frontend/dist:/frontend/dist --entrypoint /bin/bash -ti voice-changer -c \"cp -r /voice-changer-internal/frontend/dist/* /frontend/dist\"",
"copy:backend":"docker run -v `pwd`/demo:/demo --entrypoint /bin/bash -ti voice-changer -c \"cp -r /voice-changer-internal/voice-change-service/* /demo/\"", "copy:backend":"docker run -v `pwd`/demo:/demo --entrypoint /bin/bash -ti voice-changer -c \"cp -r /voice-changer-internal/voice-change-service/* /demo/\"",
"create:demo":"run-p copy:frontend copy:backend", "create:demo":"run-p copy:frontend copy:backend",

View File

@ -1,53 +0,0 @@
#!/bin/bash
EXP_NAME=$1
echo $EXP_NAME
# (A)
mkdir -p exp/${EXP_NAME}/logs
mkdir -p exp/${EXP_NAME}/filelists
mkdir -p exp/${EXP_NAME}/dataset
echo "00_myvoice|107" > exp/${EXP_NAME}/dataset/multi_speaker_correspondence.txt
echo "01_target_zundamon|100" >> exp/${EXP_NAME}/dataset/multi_speaker_correspondence.txt
echo "02_target_tsumugi|103" >> exp/${EXP_NAME}/dataset/multi_speaker_correspondence.txt
echo "03_target_metan|102" >> exp/${EXP_NAME}/dataset/multi_speaker_correspondence.txt
echo "04_target_ksora|101" >> exp/${EXP_NAME}/dataset/multi_speaker_correspondence.txt
# (B) トレーニングデータ作成
# (B-0) my voice
mkdir -p exp/${EXP_NAME}/dataset/textful/00_myvoice/text
mkdir -p exp/${EXP_NAME}/dataset/textful/00_myvoice/wav
cp dataset/00_myvoice/wav/* exp/${EXP_NAME}/dataset/textful/00_myvoice/wav/
cp dataset/00_myvoice/text/* exp/${EXP_NAME}/dataset/textful/00_myvoice/text/
# (B-1) ずんだもん
mkdir -p exp/${EXP_NAME}/dataset/textful/01_target_zundamon/
unzip -j dataset/1225_zundamon.zip 1225_zundamon/wav/* -d exp/${EXP_NAME}/dataset/textful/01_target_zundamon/wav/
unzip -j dataset/1225_zundamon.zip 1225_zundamon/text/* -d exp/${EXP_NAME}/dataset/textful/01_target_zundamon/text/
# (B-2) 春日部つむぎ
mkdir -p exp/${EXP_NAME}/dataset/textful/02_target_tsumugi/
unzip -j dataset/344_tsumugi.zip 344_tsumugi/wav/* -d exp/${EXP_NAME}/dataset/textful/02_target_tsumugi/wav/
unzip -j dataset/344_tsumugi.zip 344_tsumugi/text/* -d exp/${EXP_NAME}/dataset/textful/02_target_tsumugi/text/
# (B-3) 四国めたん
mkdir -p exp/${EXP_NAME}/dataset/textful/03_target_metan/
unzip -j dataset/459_methane.zip 459_methane/wav/* -d exp/${EXP_NAME}/dataset/textful/03_target_metan/wav/
unzip -j dataset/459_methane.zip 459_methane/text/* -d exp/${EXP_NAME}/dataset/textful/03_target_metan/text/
# (B-4) 九州そら
mkdir -p exp/${EXP_NAME}/dataset/textful/04_target_ksora/
unzip -j dataset/912_sora.zip 912_sora/wav/* -d exp/${EXP_NAME}/dataset/textful/04_target_ksora/wav/
unzip -j dataset/912_sora.zip 912_sora/text/* -d exp/${EXP_NAME}/dataset/textful/04_target_ksora/text/
## 004_expまで。
# echo $1
# mkdir -p ${EXP_NAME}/00_myvoice/text
# mkdir -p ${EXP_NAME}/00_myvoice/wav
# mkdir -p ${EXP_NAME}/logs
# mkdir -p ${EXP_NAME}/filelists

View File

@ -1,2 +0,0 @@
*
!.gitignore

View File

@ -1,2 +0,0 @@
*
!.gitignore