This commit is contained in:
wataru 2023-04-20 01:06:56 +09:00
parent 16dbcabdd9
commit 33f333c63c
2 changed files with 38 additions and 0 deletions

View File

@ -10,6 +10,26 @@
npm run build:docker:vcclient
```
## 実行準備
`docker_vcclient/weights`に外部のモデルの重みを配置する。
配置後のイメージは次のような感じです。配置する重みは使用する VC の種類によって異なります。
```
$ tree docker_vcclient/weights/
docker_vcclient/weights/
├── checkpoint_best_legacy_500.onnx
├── checkpoint_best_legacy_500.pt
├── hubert-soft-0d54a1f4.pt
├── hubert_base.pt
└── nsf_hifigan
├── NOTICE.txt
├── NOTICE.zh-CN.txt
├── config.json
└── model
```
## 実行
リポジトリフォルダのルートで

View File

@ -10,6 +10,24 @@ In root folder of repos.
npm run build:docker:vcclient
```
## preparation
Store weights of external models in `docker_vcclient/weights`. Which weights should be in the folder depends on which kind of VC you use.
```
$ tree docker_vcclient/weights/
docker_vcclient/weights/
├── checkpoint_best_legacy_500.onnx
├── checkpoint_best_legacy_500.pt
├── hubert-soft-0d54a1f4.pt
├── hubert_base.pt
└── nsf_hifigan
├── NOTICE.txt
├── NOTICE.zh-CN.txt
├── config.json
└── model
```
## Run
In root folder of repos.