Spaces:
Runtime error
Runtime error
File size: 161 Bytes
45ee559 |
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)
|