RikkaBotan
commited on
Commit
•
606ab36
1
Parent(s):
1a89428
Update README.md
Browse files
README.md
CHANGED
@@ -96,6 +96,26 @@ If you write that you are using this model, I will be glad!
|
|
96 |
|
97 |
①Style-Bert-VITS2 インストール先の Style-Bert-VITS2/model_assets/rikka_botan/ フォルダに config.json, safetensors, style_vectors.npy の 3ファイルを置きます。
|
98 |
Put 3 files on Style-Bert-VITS2/model_assets/rikka_botan/ folder
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
②以下のプログラムを実行します execute this program
|
100 |
|
101 |
```python
|
|
|
96 |
|
97 |
①Style-Bert-VITS2 インストール先の Style-Bert-VITS2/model_assets/rikka_botan/ フォルダに config.json, safetensors, style_vectors.npy の 3ファイルを置きます。
|
98 |
Put 3 files on Style-Bert-VITS2/model_assets/rikka_botan/ folder
|
99 |
+
以下のプログラムで自動的に保存できます。By using this program, we can save files.
|
100 |
+
```python
|
101 |
+
from google.colab import drive
|
102 |
+
drive.mount("/content/drive")
|
103 |
+
%cd /content/drive/MyDrive/
|
104 |
+
!mkdir Style-Bert-VITS2/
|
105 |
+
%cd Style-Bert-VITS2/
|
106 |
+
!mkdir model_assets/
|
107 |
+
%cd model_assets/
|
108 |
+
!mkdir rikka_botan/
|
109 |
+
from huggingface_hub import snapshot_download
|
110 |
+
|
111 |
+
model_name = "RikkaBotan/style_bert_vits2_jp_extra_sweet_original"
|
112 |
+
download_path = snapshot_download(
|
113 |
+
repo_id=model_name,
|
114 |
+
local_dir = f"rikka_botan/",
|
115 |
+
local_dir_use_symlinks=False
|
116 |
+
)
|
117 |
+
```
|
118 |
+
|
119 |
②以下のプログラムを実行します execute this program
|
120 |
|
121 |
```python
|