Views
No views yet
pip install -r requirements.txtpython preprocessing/process_IEMOCAP.pypython train_IEMOCAP.py -f mfcc -m CTMAM -b 128 -e 150 -l 0.001 -g 0python predict.py --model-path data/IEMOCAP/model_CTMAM_mfcc_all.pth --file examples/sample.wav-g to select GPU id (set to -1 for CPU).-f to change feature type (e.g., mfcc, fbank if supported).preprocessing/ to prepare the IEMOCAP features.data/IEMOCAP/ with precomputed feature files and checkpoints.train_IEMOCAP.py — training entrypointpredict.py — inference scriptmodels.py — model definitions (CNN-Transformer and attention modules)data_loader.py — dataset and dataloader utilitiespreprocessing/ — data processing helpers for IEMOCAPdata/IEMOCAP/model_CTMAM_mfcc_all.pth and metric/loss logs in the same folder.--model-path to the checkpoint file.data/IEMOCAP/.predict.py to compute per-file predictions and aggregate metrics.