From 766323bc3134d6eb0310530e1e8139360a28c197 Mon Sep 17 00:00:00 2001 From: misyaguziya Date: Sun, 31 Mar 2024 12:57:05 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=90=9B[bugfix]=20Model=20:=20weight?= =?UTF-8?q?=E3=81=AE=E3=83=AA=E3=83=B3=E3=82=AF=E3=81=8C=E6=B6=88=E5=A4=B1?= =?UTF-8?q?=E3=81=97=E3=81=9F=E3=81=9F=E3=82=81=E3=80=81=E5=88=A5=E3=83=AA?= =?UTF-8?q?=E3=83=B3=E3=82=AF=E3=82=92=E3=83=9B=E3=82=B9=E3=83=88=E3=81=99?= =?UTF-8?q?=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- models/translation/translation_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/translation/translation_utils.py b/models/translation/translation_utils.py index 73805cdc..308a3eab 100644 --- a/models/translation/translation_utils.py +++ b/models/translation/translation_utils.py @@ -8,7 +8,7 @@ import hashlib ctranslate2_weights = { "Small": { # M2M-100 418M-parameter model - "url": "https://bit.ly/33fM1AO", + "url": "https://github.com/misyaguziya/VRCT-weights/releases/download/v1.0/m2m100_418m.zip", "directory_name": "m2m100_418m", "tokenizer": "facebook/m2m100_418M", "hash": { @@ -18,7 +18,7 @@ ctranslate2_weights = { } }, "Large": { # M2M-100 1.2B-parameter model - "url": "https://bit.ly/3GYiaed", + "url": "https://github.com/misyaguziya/VRCT-weights/releases/download/v1.0/m2m100_12b.zip", "directory_name": "m2m100_12b", "tokenizer": "facebook/m2m100_1.2b", "hash": { From c160b1a13d8b69d07c745692b4cedff908f4472b Mon Sep 17 00:00:00 2001 From: Sakamoto Shiina <68018796+ShiinaSakamoto@users.noreply.github.com> Date: Sun, 31 Mar 2024 13:49:44 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=91=8D[Update/Hotfix]=20Version=20:?= =?UTF-8?q?=202.2.1=20->=202.2.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 8c7d8f85..ce6bfd1f 100644 --- a/config.py +++ b/config.py @@ -832,7 +832,7 @@ class Config: def init_config(self): # Read Only - self._VERSION = "2.2.1" + self._VERSION = "2.2.2" self._ENABLE_SPEAKER2CHATBOX = False # Speaker2Chatbox self._ENABLE_SPEAKER2CHATBOX_PASS_CONFIRMATION = "123456789" self._PATH_LOCAL = os_path.dirname(sys.argv[0])