mirror of
https://github.com/voice-cloning-app/Voice-Cloning-App.git
synced 2026-02-24 12:10:29 +01:00
7 lines
234 B
Python
7 lines
234 B
Python
SEED = 1234
|
|
PUNCTUATION = list("_-!'(),.:;?")
|
|
BASE_SYMBOLS = PUNCTUATION + [" "]
|
|
DEFAULT_ALPHABET = list("_-!'(),.:;? ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz")
|
|
TRAIN_FILE = "trainlist.txt"
|
|
VALIDATION_FILE = "vallist.txt"
|