mirror of
https://github.com/wassname/TTS.git
synced 2026-09-09 11:16:00 +08:00
9 lines
161 B
Python
9 lines
161 B
Python
import json
|
|
import re
|
|
|
|
from train_glowtts import config
|
|
|
|
s = json.dumps(config, default=vars, indent=2)
|
|
s = re.sub(r'"test_sentences":\s*\[\],', "", s)
|
|
print(s)
|