mirror of
https://github.com/shivammehta25/Matcha-TTS.git
synced 2026-02-05 10:19:19 +08:00
Compare commits
2 Commits
main
...
pre-commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
66178aea04 | ||
|
|
7ebef67773 |
@@ -3,7 +3,7 @@ default_language_version:
|
|||||||
|
|
||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
rev: v4.5.0
|
rev: v6.0.0
|
||||||
hooks:
|
hooks:
|
||||||
# list of supported hooks: https://pre-commit.com/hooks.html
|
# list of supported hooks: https://pre-commit.com/hooks.html
|
||||||
- id: trailing-whitespace
|
- id: trailing-whitespace
|
||||||
@@ -17,29 +17,29 @@ repos:
|
|||||||
- id: check-added-large-files
|
- id: check-added-large-files
|
||||||
|
|
||||||
# python code formatting
|
# python code formatting
|
||||||
- repo: https://github.com/psf/black
|
- repo: https://github.com/psf/black-pre-commit-mirror
|
||||||
rev: 23.12.1
|
rev: 26.1.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: black
|
- id: black
|
||||||
args: [--line-length, "120"]
|
args: [--line-length, "120"]
|
||||||
|
|
||||||
# python import sorting
|
# python import sorting
|
||||||
- repo: https://github.com/PyCQA/isort
|
- repo: https://github.com/PyCQA/isort
|
||||||
rev: 5.13.2
|
rev: 7.0.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: isort
|
- id: isort
|
||||||
args: ["--profile", "black", "--filter-files"]
|
args: ["--profile", "black", "--filter-files"]
|
||||||
|
|
||||||
# python upgrading syntax to newer version
|
# python upgrading syntax to newer version
|
||||||
- repo: https://github.com/asottile/pyupgrade
|
- repo: https://github.com/asottile/pyupgrade
|
||||||
rev: v3.15.0
|
rev: v3.21.2
|
||||||
hooks:
|
hooks:
|
||||||
- id: pyupgrade
|
- id: pyupgrade
|
||||||
args: [--py38-plus]
|
args: [--py38-plus]
|
||||||
|
|
||||||
# python check (PEP8), programming errors and code complexity
|
# python check (PEP8), programming errors and code complexity
|
||||||
- repo: https://github.com/PyCQA/flake8
|
- repo: https://github.com/PyCQA/flake8
|
||||||
rev: 7.0.0
|
rev: 7.3.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: flake8
|
- id: flake8
|
||||||
args:
|
args:
|
||||||
@@ -54,6 +54,6 @@ repos:
|
|||||||
|
|
||||||
# pylint
|
# pylint
|
||||||
- repo: https://github.com/pycqa/pylint
|
- repo: https://github.com/pycqa/pylint
|
||||||
rev: v3.0.3
|
rev: v4.0.4
|
||||||
hooks:
|
hooks:
|
||||||
- id: pylint
|
- id: pylint
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
# Code modified from Rafael Valle's implementation https://github.com/NVIDIA/waveglow/blob/5bc2a53e20b3b533362f974cfa1ea0267ae1c2b1/denoiser.py
|
# Code modified from Rafael Valle's implementation https://github.com/NVIDIA/waveglow/blob/5bc2a53e20b3b533362f974cfa1ea0267ae1c2b1/denoiser.py
|
||||||
|
|
||||||
"""Waveglow style denoiser can be used to remove the artifacts from the HiFiGAN generated audio."""
|
"""Waveglow style denoiser can be used to remove the artifacts from the HiFiGAN generated audio."""
|
||||||
|
|
||||||
import torch
|
import torch
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
This is a base lightning module that can be used to train a model.
|
This is a base lightning module that can be used to train a model.
|
||||||
The benefit of this abstraction is that all the logic outside of model definition can be reused for different models.
|
The benefit of this abstraction is that all the logic outside of model definition can be reused for different models.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import inspect
|
import inspect
|
||||||
from abc import ABC
|
from abc import ABC
|
||||||
from typing import Any, Dict
|
from typing import Any, Dict
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
"""from https://github.com/keithito/tacotron"""
|
"""from https://github.com/keithito/tacotron"""
|
||||||
|
|
||||||
from matcha.text import cleaners
|
from matcha.text import cleaners
|
||||||
from matcha.text.symbols import symbols
|
from matcha.text.symbols import symbols
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
Defines the set of symbols used in text input to the model.
|
Defines the set of symbols used in text input to the model.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
_pad = "_"
|
_pad = "_"
|
||||||
_punctuation = ';:,.!?¡¿—…"«»“” '
|
_punctuation = ';:,.!?¡¿—…"«»“” '
|
||||||
_letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
|
_letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ when needed.
|
|||||||
|
|
||||||
Parameters from hparam.py will be used
|
Parameters from hparam.py will be used
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ when needed.
|
|||||||
|
|
||||||
Parameters from hparam.py will be used
|
Parameters from hparam.py will be used
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
|
|||||||
Reference in New Issue
Block a user