Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jul 2, 2024
1 parent b4954d9 commit f7a20ef
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions matcha/models/baselightningmodule.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
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.
"""

import inspect
from abc import ABC
from typing import Any, Dict
Expand Down
1 change: 1 addition & 0 deletions matcha/text/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
""" from https://github.com/keithito/tacotron """

from matcha.text import cleaners
from matcha.text.symbols import symbols

Expand Down
1 change: 1 addition & 0 deletions matcha/text/symbols.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Defines the set of symbols used in text input to the model.
"""

_pad = "_"
_punctuation = ';:,.!?¡¿—…"«»“” '
_letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
Expand Down
1 change: 1 addition & 0 deletions matcha/utils/generate_data_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
Parameters from hparam.py will be used
"""

import argparse
import json
import os
Expand Down
1 change: 1 addition & 0 deletions matcha/utils/get_durations_from_trained_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
Parameters from hparam.py will be used
"""

import argparse
import json
import os
Expand Down

0 comments on commit f7a20ef

Please sign in to comment.