Skip to content

Commit

Permalink
docs: rename links to GitHub repos to the EveryVoiceTTS space
Browse files Browse the repository at this point in the history
  • Loading branch information
joanise committed Jun 25, 2024
1 parent b6e373d commit 858eb8c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
3 changes: 1 addition & 2 deletions fs2/cli/synthesize.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
"""
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion fs2/cli/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down
16 changes: 8 additions & 8 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
<!-- [![Build Status](https://github.com/roedoejet/g2p/actions/workflows/tests.yml/badge.svg)](https://github.com/roedoejet/g2p/actions) -->
<!-- [![PyPI package](https://img.shields.io/pypi/v/hfgl.svg)](https://pypi.org/project/g2p/) -->
[![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. 🚧

> A PyTorch Lightning implementation of the FastSpeech2 Text-to-Speech Feature Prediction Model
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
Expand All @@ -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
Expand All @@ -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 .
```
Expand Down Expand Up @@ -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.

Expand All @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
author="Aidan Pine",
author_email="[email protected]",
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",
Expand Down

0 comments on commit 858eb8c

Please sign in to comment.