-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c34be5b
commit 37a9af3
Showing
1 changed file
with
41 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,42 @@ | ||
# SBV2 GUI | ||
リリースからダウンロードし、ダブルクリックした後しばらく待機すると起動します。 | ||
現段階ではCPUのみ & x86_64のWindowsのみ対応です。 | ||
## 使い方 | ||
[リリース](https://github.com/tuna2134/sbv2-gui/releases)からダウンロードし、ダブルクリックした後しばらく待機すると起動します。 | ||
現段階ではCPUのみ & x86_64のWindowsのみ対応です。 | ||
|
||
## 既存のモデルの変換方法 | ||
[こちら](https://github.com/tuna2134/sbv2-api/tree/main/convert)を参照してください。 | ||
|
||
## HTTP APIを使いたい | ||
`./models`に.sbv2ファイルおよび[`debert.onnx`](https://huggingface.co/googlefan/sbv2_onnx_models/resolve/main/deberta.onnx?download=true)、[`tokenizer.json`](https://huggingface.co/googlefan/sbv2_onnx_models/resolve/main/tokenizer.json?download=true)を格納した後に、 | ||
`.env`に | ||
```env | ||
BERT_MODEL_PATH=models/deberta.onnx | ||
TOKENIZER_PATH=models/tokenizer.json | ||
``` | ||
を記入し、 | ||
CPUの場合は | ||
```sh | ||
docker run -it --rm -p 3000:3000 --name sbv2 \ | ||
-v ./models:/work/models --env-file .env \ | ||
ghcr.io/tuna2134/sbv2-api:cpu | ||
``` | ||
CUDAの場合は | ||
``` | ||
docker run -it --rm -p 3000:3000 --name sbv2 \ | ||
-v ./models:/work/models --env-file .env \ | ||
--gpus all \ | ||
ghcr.io/tuna2134/sbv2-api:cuda | ||
``` | ||
とすることで http://localhost:3000/ にて立ち上がります。 | ||
APIの利用方法については以下のcurlコマンドを参考にしてください。 | ||
```sh | ||
curl -XPOST -H "Content-type: application/json" -d '{"text": "こんにちは","ident": "tsukuyomi"}' 'http://localhost:3000/synthesize' --output "output.wav" | ||
curl http://localhost:3000/models | ||
``` | ||
|
||
## アイコン | ||
Flux devで | ||
Prompt: `Style bert vits2 simple logo` | ||
Seed: `1` | ||
で生成したものです。 | ||
![アイコン](https://raw.githubusercontent.com/tuna2134/sbv2-gui/main/public/icon.png) |