mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-08-08 01:22:22 +00:00
* first commit * replace phonimizer with g2p * use Conformer as text encoder * modify training script, clean codes * rename directory * convert text to tokens in data preparation stage * fix tts_datamodule.py * support onnx export and testing the exported onnx model * add doc * add README.md * fix style
19 lines
305 B
TOML
19 lines
305 B
TOML
[tool.isort]
|
|
profile = "black"
|
|
skip = ["icefall/__init__.py"]
|
|
|
|
[tool.black]
|
|
line-length = 88
|
|
exclude = '''
|
|
/(
|
|
\.git
|
|
| \.github
|
|
)/
|
|
| make_kn_lm.py
|
|
| icefall\/__init__\.py
|
|
| icefall\/diagnostics\.py
|
|
| icefall\/profiler\.py
|
|
| egs\/librispeech\/ASR\/zipformer
|
|
| egs\/ljspeech\/TTS\/vits
|
|
'''
|