diff --git a/text/user_dict/LGPL_LICENSE b/LGPL_LICENSE similarity index 100% rename from text/user_dict/LGPL_LICENSE rename to LGPL_LICENSE diff --git a/README.md b/README.md index 7be91a2..b857e1d 100644 --- a/README.md +++ b/README.md @@ -170,15 +170,15 @@ In addition to the original reference (written below), I used the following repo [The pretrained model](https://huggingface.co/litagin/Style-Bert-VITS2-1.0-base) and [JP-Extra version](https://huggingface.co/litagin/Style-Bert-VITS2-2.0-base-JP-Extra) is essentially taken from [the original base model of Bert-VITS2 v2.1](https://huggingface.co/Garydesu/bert-vits2_base_model-2.1) and [JP-Extra pretrained model of Bert-VITS2](https://huggingface.co/Stardust-minus/Bert-VITS2-Japanese-Extra), so all the credits go to the original author ([Fish Audio](https://github.com/fishaudio)): -In addition, [text/user_dict/] module is based on the following repositories: -- [[voicevox_engine](https://github.com/VOICEVOX/voicevox_engine)] +In addition, [text/user_dict/](text/user_dict) module is based on the following repositories: +- [voicevox_engine](https://github.com/VOICEVOX/voicevox_engine)] and the license of this module is LGPL v3. ## LICENSE This repository is licensed under the GNU Affero General Public License v3.0, the same as the original Bert-VITS2 repository. For more details, see [LICENSE](LICENSE). -In addition, [text/user_dict/] module is licensed under the GNU Lesser General Public License v3.0, inherited from the original VOICEVOX engine repository. For more details, see [LGPL_LICENSE](text/user_dict/LGPL_LICENSE). +In addition, [text/user_dict/](text/user_dict) module is licensed under the GNU Lesser General Public License v3.0, inherited from the original VOICEVOX engine repository. For more details, see [LGPL_LICENSE](LGPL_LICENSE). diff --git a/text/user_dict/README.md b/text/user_dict/README.md index def5f71..b086a4d 100644 --- a/text/user_dict/README.md +++ b/text/user_dict/README.md @@ -13,4 +13,4 @@ - Pydanticのモデルで必要な箇所のみを抽出。 **ライセンス**: -元のVOICEVOX engineのリポジトリのコードは、LGPL v3 と、ソースコードの公開が不要な別ライセンスのデュアルライセンスの下で使用されています。当プロジェクトにおけるこのモジュールもLGPLライセンスの下にあります。詳細については、プロジェクトのルートディレクトリにある[LGPL_LICENSE](LGPL_LICENSE)ファイルをご参照ください。また、元のVOICEVOX engineプロジェクトのライセンスについては、[こちら](https://github.com/VOICEVOX/voicevox_engine/blob/master/LICENSE)をご覧ください。 +元のVOICEVOX engineのリポジトリのコードは、LGPL v3 と、ソースコードの公開が不要な別ライセンスのデュアルライセンスの下で使用されています。当プロジェクトにおけるこのモジュールもLGPLライセンスの下にあります。詳細については、プロジェクトのルートディレクトリにある[LGPL_LICENSE](/LGPL_LICENSE)ファイルをご参照ください。また、元のVOICEVOX engineプロジェクトのライセンスについては、[こちら](https://github.com/VOICEVOX/voicevox_engine/blob/master/LICENSE)をご覧ください。 diff --git a/text/user_dict/__init__.py b/text/user_dict/__init__.py index d258359..c12b3d1 100644 --- a/text/user_dict/__init__.py +++ b/text/user_dict/__init__.py @@ -1,3 +1,8 @@ +# このファイルは、VOICEVOXプロジェクトのVOICEVOX engineからお借りしています。 +# 引用元: +# https://github.com/VOICEVOX/voicevox_engine/blob/f181411ec69812296989d9cc583826c22eec87ae/voicevox_engine/user_dict/user_dict.py +# ライセンス: LGPL-3.0 +# 詳しくは、このファイルと同じフォルダにあるREADME.mdを参照してください。 import json import sys import threading diff --git a/text/user_dict/part_of_speech_data.py b/text/user_dict/part_of_speech_data.py index db7f839..7e22699 100644 --- a/text/user_dict/part_of_speech_data.py +++ b/text/user_dict/part_of_speech_data.py @@ -1,8 +1,8 @@ # このファイルは、VOICEVOXプロジェクトのVOICEVOX engineからお借りしています。 # 引用元: -# https://github.com/VOICEVOX/voicevox_engine/blob/f181411ec69812296989d9cc583826c22eec87ae/voicevox_engine/model.py#L207 +# https://github.com/VOICEVOX/voicevox_engine/blob/f181411ec69812296989d9cc583826c22eec87ae/voicevox_engine/user_dict/part_of_speech_data.py # ライセンス: LGPL-3.0 -# 詳しくは、このファイルの場所にあるREADME.mdを参照してください +# 詳しくは、このファイルと同じフォルダにあるREADME.mdを参照してください。 from typing import Dict diff --git a/text/user_dict/word_model.py b/text/user_dict/word_model.py index fda5576..f05d8dc 100644 --- a/text/user_dict/word_model.py +++ b/text/user_dict/word_model.py @@ -1,3 +1,8 @@ +# このファイルは、VOICEVOXプロジェクトのVOICEVOX engineからお借りしています。 +# 引用元: +# https://github.com/VOICEVOX/voicevox_engine/blob/f181411ec69812296989d9cc583826c22eec87ae/voicevox_engine/model.py#L207 +# ライセンス: LGPL-3.0 +# 詳しくは、このファイルと同じフォルダにあるREADME.mdを参照してください。 from enum import Enum from re import findall, fullmatch from typing import List, Optional