This commit is contained in:
litagin02
2024-06-14 15:45:53 +09:00
parent 7c93f77606
commit b1970aa287
5 changed files with 6 additions and 5 deletions

View File

@@ -15,6 +15,7 @@ You can install via `pip install style-bert-vits2` (inference only), see [librar
- [Zennの解説記事](https://zenn.dev/litagin/articles/034819a5256ff4)
- [**リリースページ**](https://github.com/litagin02/Style-Bert-VITS2/releases/)、[更新履歴](/docs/CHANGELOG.md)
- 2024-06-14: Ver 2.5.1 (利用規約をお願いへ変更したのみ)
- 2024-06-02: Ver 2.5.0 (**[利用規約](/docs/TERMS_OF_USE.md)の追加**、フォルダ分けからのスタイル生成、小春音アミ・あみたろモデルの追加、インストールの高速化等)
- 2024-03-16: ver 2.4.1 (**batファイルによるインストール方法の変更**)
- 2024-03-15: ver 2.4.0 (大規模リファクタリングや種々の改良、ライブラリ化)

View File

@@ -6,7 +6,7 @@
"id": "F7aJhsgLAWvO"
},
"source": [
"# Style-Bert-VITS2 (ver 2.5.0) のGoogle Colabでの学習\n",
"# Style-Bert-VITS2 (ver 2.5.1) のGoogle Colabでの学習\n",
"\n",
"Google Colab上でStyle-Bert-VITS2の学習を行うことができます。\n",
"\n",
@@ -52,7 +52,7 @@
"!curl -LsSf https://astral.sh/uv/install.sh | sh\n",
"!git clone https://github.com/litagin02/Style-Bert-VITS2.git\n",
"%cd Style-Bert-VITS2/\n",
"!uv pip install --system -q -r requirements-colab.txt\n",
"!uv pip install --system -r requirements-colab.txt\n",
"!python initialize.py --skip_default_models"
]
},

View File

@@ -69,5 +69,5 @@
"use_spectral_norm": false,
"gin_channels": 256
},
"version": "2.5.0"
"version": "2.5.1"
}

View File

@@ -76,5 +76,5 @@
"initial_channel": 64
}
},
"version": "2.5.0-JP-Extra"
"version": "2.5.1-JP-Extra"
}

View File

@@ -4,7 +4,7 @@ from style_bert_vits2.utils.strenum import StrEnum
# Style-Bert-VITS2 のバージョン
VERSION = "2.5.0"
VERSION = "2.5.1"
# Style-Bert-VITS2 のベースディレクトリ
BASE_DIR = Path(__file__).parent.parent