Files
Eren Gölge 69f080eb47 Fix DelightfulTTS (#2823)
* Fix tests

* Make style
2023-07-31 13:52:45 +02:00

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)