Fix: colab torchvision bug, explicit torchaudio version

This commit is contained in:
litagin02
2024-09-09 15:31:30 +09:00
parent a4e5955000
commit 38adf43924
8 changed files with 12 additions and 6 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-09-09: Ver 2.6.1: 依存性のcolabバグ等修正のみ
- 2024-06-16: Ver 2.6.0 (モデルの差分マージ・加重マージ・ヌルモデルマージの追加、使い道については[この記事](https://zenn.dev/litagin/articles/1297b1dc7bdc79)参照)
- 2024-06-14: Ver 2.5.1 (利用規約をお願いへ変更したのみ)
- 2024-06-02: Ver 2.5.0 (**[利用規約](/docs/TERMS_OF_USE.md)の追加**、フォルダ分けからのスタイル生成、小春音アミ・あみたろモデルの追加、インストールの高速化等)
@@ -78,7 +79,7 @@ powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
git clone https://github.com/litagin02/Style-Bert-VITS2.git
cd Style-Bert-VITS2
uv venv venv
uv pip install torch torchaudio --index-url https://download.pytorch.org/whl/cu118
uv pip install "torch<2.4" "torchaudio<2.4" --index-url https://download.pytorch.org/whl/cu118
uv pip install -r requirements.txt
venv\Scripts\activate
python initialize.py # 必要なモデルとデフォルトTTSモデルをダウンロード

View File

@@ -6,7 +6,7 @@
"id": "F7aJhsgLAWvO"
},
"source": [
"# Style-Bert-VITS2 (ver 2.6.0) のGoogle Colabでの学習\n",
"# Style-Bert-VITS2 (ver 2.6.1) のGoogle Colabでの学習\n",
"\n",
"Google Colab上でStyle-Bert-VITS2の学習を行うことができます。\n",
"\n",

View File

@@ -69,5 +69,5 @@
"use_spectral_norm": false,
"gin_channels": 256
},
"version": "2.6.0"
"version": "2.6.1"
}

View File

@@ -76,5 +76,5 @@
"initial_channel": 64
}
},
"version": "2.6.0-JP-Extra"
"version": "2.6.1-JP-Extra"
}

View File

@@ -1,5 +1,9 @@
# Changelog
## v2.6.1 (2024-09-09)
torchのバージョン由来の不具合修正のみ
## v2.6.0 (2024-06-16)
### 新機能

View File

@@ -15,5 +15,6 @@ pypinyin
pyworld-prebuilt
torch<2.4
torchaudio
torchvision<0.19
transformers
umap-learn

View File

@@ -20,6 +20,6 @@ pyworld-prebuilt
stable_ts
tensorboard
torch<2.4
torchaudio
torchaudio<2.4
transformers
umap-learn

View File

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