File size: 161 Bytes
46a75d7
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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)