Skip to content

Commit 61b2107

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent d957bf3 commit 61b2107

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

matcha/models/baselightningmodule.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
This is a base lightning module that can be used to train a model.
33
The benefit of this abstraction is that all the logic outside of model definition can be reused for different models.
44
"""
5+
56
import inspect
67
from abc import ABC
78
from typing import Any, Dict

matcha/text/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
""" from https://github.com/keithito/tacotron """
2+
23
from matcha.text import cleaners
34
from matcha.text.symbols import symbols
45

matcha/text/symbols.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
33
Defines the set of symbols used in text input to the model.
44
"""
5+
56
_pad = "_"
67
_punctuation = ';:,.!?¡¿—…"«»“” '
78
_letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"

matcha/utils/generate_data_statistics.py

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
55
Parameters from hparam.py will be used
66
"""
7+
78
import argparse
89
import json
910
import os

0 commit comments

Comments
 (0)