From 038d07f4e778d1f3b292933018b55ecd7864d1bf Mon Sep 17 00:00:00 2001 From: litagin02 Date: Mon, 11 Nov 2024 10:18:55 +0900 Subject: [PATCH] Bump ver only --- colab.ipynb | 7 ++++--- configs/config.json | 2 +- configs/config_jp_extra.json | 2 +- style_bert_vits2/constants.py | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/colab.ipynb b/colab.ipynb index c400e65..dcf7bb5 100644 --- a/colab.ipynb +++ b/colab.ipynb @@ -6,7 +6,7 @@ "id": "F7aJhsgLAWvO" }, "source": [ - "# Style-Bert-VITS2 (ver 2.6.1) のGoogle Colabでの学習\n", + "# Style-Bert-VITS2 (ver 2.7.0) の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 -r requirements-colab.txt\n", + "!uv pip install --system -r requirements-colab.txt --no-progress\n", "!python initialize.py --skip_default_models" ] }, @@ -434,7 +434,8 @@ "provenance": [] }, "kernelspec": { - "display_name": "Python 3", + "display_name": "venv", + "language": "python", "name": "python3" }, "language_info": { diff --git a/configs/config.json b/configs/config.json index d1edf16..fb8b41e 100644 --- a/configs/config.json +++ b/configs/config.json @@ -69,5 +69,5 @@ "use_spectral_norm": false, "gin_channels": 256 }, - "version": "2.6.1" + "version": "2.7.0" } diff --git a/configs/config_jp_extra.json b/configs/config_jp_extra.json index fa93293..d28ecc5 100644 --- a/configs/config_jp_extra.json +++ b/configs/config_jp_extra.json @@ -76,5 +76,5 @@ "initial_channel": 64 } }, - "version": "2.6.1-JP-Extra" + "version": "2.7.0-JP-Extra" } diff --git a/style_bert_vits2/constants.py b/style_bert_vits2/constants.py index a1a6c40..e0acf84 100644 --- a/style_bert_vits2/constants.py +++ b/style_bert_vits2/constants.py @@ -4,7 +4,7 @@ from style_bert_vits2.utils.strenum import StrEnum # Style-Bert-VITS2 のバージョン -VERSION = "2.6.1" +VERSION = "2.7.0" # Style-Bert-VITS2 のベースディレクトリ BASE_DIR = Path(__file__).parent.parent