From 858eb8c8a18a5b7447eb4f7f0906ff7564f579cd Mon Sep 17 00:00:00 2001 From: Eric Joanis Date: Tue, 25 Jun 2024 16:00:39 -0400 Subject: [PATCH] docs: rename links to GitHub repos to the EveryVoiceTTS space --- fs2/cli/synthesize.py | 3 +-- fs2/cli/train.py | 2 +- readme.md | 16 ++++++++-------- setup.py | 2 +- 4 files changed, 11 insertions(+), 12 deletions(-) diff --git a/fs2/cli/synthesize.py b/fs2/cli/synthesize.py index 8930eba..d27f746 100644 --- a/fs2/cli/synthesize.py +++ b/fs2/cli/synthesize.py @@ -110,7 +110,7 @@ def prepare_data( ] except KeyError: # TODO: Errors should have better formatting: - # https://github.com/roedoejet/FastSpeech2_lightning/issues/26 + # https://github.com/EveryVoiceTTS/FastSpeech2_lightning/issues/26 logger.info( textwrap.dedent( """ @@ -377,7 +377,6 @@ def synthesize( # noqa: C901 help="Number of workers to process the data.", ), ): - """Given some text and a trained model, generate some audio. i.e. perform typical speech synthesis""" # TODO: allow for changing of language/speaker and variance control import torch diff --git a/fs2/cli/train.py b/fs2/cli/train.py index 2cf1d2d..94f4ca1 100644 --- a/fs2/cli/train.py +++ b/fs2/cli/train.py @@ -19,7 +19,7 @@ def train(**kwargs): config = load_config_base_command(FastSpeech2Config, config_args, config_file) lang2id, speaker2id = lookuptables_from_config(config) - # TODO: What about when we are fine-tuning? Do the bins in the Variance Adaptor not change? https://github.com/roedoejet/FastSpeech2_lightning/issues/28 + # TODO: What about when we are fine-tuning? Do the bins in the Variance Adaptor not change? https://github.com/EveryVoiceTTS/FastSpeech2_lightning/issues/28 with open(config.preprocessing.save_dir / "stats.json") as f: stats: Stats = Stats(**json.load(f)) diff --git a/readme.md b/readme.md index d6125a1..45d8d7e 100644 --- a/readme.md +++ b/readme.md @@ -4,7 +4,7 @@ [![license](https://img.shields.io/badge/Licence-MIT-green)](LICENSE) -[![standard-readme compliant](https://img.shields.io/badge/readme%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/roedoejet/FastSpeech2_lightning) +[![standard-readme compliant](https://img.shields.io/badge/readme%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/EveryVoiceTTS/FastSpeech2_lightning) 🚧 Under Construction! This repo is not expected to work fully. Please check back later for a stable release. 🚧 @@ -12,7 +12,7 @@ This library is for training [FastSpeech2](https://arxiv.org/abs/2006.04558) / [FastPitch](https://arxiv.org/pdf/2006.06873.pdf) style feature prediction networks for speech synthesis. This implementation is one part of the [Speech Generation for Indigenous Language Education (SGILE)](#background) Project. -This repo has been separated in case you would like to use it separately from the broader SGILE system, but if you are looking to build speech synthesis systems from scratch, please visit [the main repository](https://github.com/roedoejet/EveryVoice) +This repo has been separated in case you would like to use it separately from the broader SGILE system, but if you are looking to build speech synthesis systems from scratch, please visit [the main repository](https://github.com/EveryVoiceTTS/EveryVoice) ## Table of Contents - FastSpeech2 @@ -24,8 +24,8 @@ This repo has been separated in case you would like to use it separately from th - [License](#license) --> See also: - - [SGILE HiFiGAN](https://github.com/roedoejet/HiFiGAN_iSTFT_lightning) - - [SGILE DeepForcedAligner](https://github.com/roedoejet/DeepForcedAligner_lightning) + - [SGILE HiFiGAN](https://github.com/EveryVoiceTTS/HiFiGAN_iSTFT_lightning) + - [SGILE DeepForcedAligner](https://github.com/EveryVoiceTTS/DeepForcedAligner_lightning) - [Requirements and Motivations of Low-Resource Speech Synthesis for Language Revitalization](https://aclanthology.org/2022.acl-long.507/) ## Background @@ -45,7 +45,7 @@ This Clone clone the repo and pip install it locally: ```sh -$ git clone https://github.com/roedoejet/FastSpeech2_lightning.git +$ git clone https://github.com/EveryVoiceTTS/FastSpeech2_lightning.git $ cd FastSpeech2_lightning $ pip install -e . ``` @@ -89,8 +89,8 @@ Coming... ## Contributing Feel free to dive in! - - [Open an issue](https://github.com/roedoejet/EveryVoice/issues/new) in the main EveryVoice repo with the tag `[FastSpeech2]`, - - submit PRs to this repo with a corresponding submodule update PR to [EveryVoice](https://github.com/roedoejet/EveryVoice). + - [Open an issue](https://github.com/EveryVoiceTTS/EveryVoice/issues/new) in the main EveryVoice repo with the tag `[FastSpeech2]`, + - submit PRs to this repo with a corresponding submodule update PR to [EveryVoice](https://github.com/EveryVoiceTTS/EveryVoice). This repo follows the [Contributor Covenant](http://contributor-covenant.org/version/1/3/0/) Code of Conduct. @@ -102,7 +102,7 @@ pre-commit install gitlint install-hook ``` -Have a look at [Contributing.md](https://github.com/roedoejet/EveryVoice/blob/main/Contributing.md) +Have a look at [Contributing.md](https://github.com/EveryVoiceTTS/EveryVoice/blob/main/Contributing.md) for the full details on the Conventional Commit messages we prefer, our code formatting conventions, and our Git hooks. diff --git a/setup.py b/setup.py index dec7a7d..2f42b4c 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ author="Aidan Pine", author_email="hello@aidanpine.ca", license="MIT", - url="https://github.com/roedoejet/FastSpeech2_lightning", + url="https://github.com/EveryVoiceTTS/FastSpeech2_lightning", description="Text-to-Speech Synthesis for the Speech Generation for Indigenous Language Education Small Teams Project", long_description=long_description, long_description_content_type="text/markdown",