clstm_fastAPI / config.py
abedir's picture
Upload 7 files
3461076 verified
raw
history blame contribute delete
349 Bytes
CONFIG = {
"model_path": "best_clstm.pt",
"sample_rate": 16000,
"duration": 3.0,
"n_mels": 40,
"n_fft": 512,
"hop_length": 256
}
EMOTION_CONFIG = {
"angry": "😠",
"calm": "😌",
"disgust": "🀒",
"fearful": "😨",
"happy": "😊",
"neutral": "😐",
"sad": "😒",
"surprised": "😲"
}