CA-MSER icon indicating copy to clipboard operation
CA-MSER copied to clipboard

Code for Speech Emotion Recognition with Co-Attention based Multi-level Acoustic Information

Results 9 CA-MSER issues
Sort by recently updated
recently updated
newest added

Hello,When I run these lines of codes for i, seg in enumerate(data): seg = np.clip(seg, 0.0, 1.0) seg_rgb = (cm(seg)[:,:,:3]*255.0).astype(np.uint8) img = Image.fromarray(seg_rgb, mode='RGB') data_tensor.append(alexnet_preprocess(img)) return data_tensor ----------------------------------------------------- Dataset normalized...

How can I correct the following error? FileNotFoundError: [Errno 2] No such file or directory: 'IEMOCAP_multi.pkl'**

Hi, I have a question. Obviously I know that the IEMOCAP dataset is multi-label, but if you look at the code, it seems that the accuracy was measured with single-label...

Hi, I hava a question. I just want to see the effect when I use train_loss_mml in your code. like this: train_loss_mml = criterion_mml(outputs['M'], train_labels_batch) train_loss = train_loss_ce + train_loss_mml...

Hi sir, Good time, Thank you very much for the codes of your article, The codes are written very neatly and readably, I run these codes in the Colab environment,...

Hello, I printed the validation set accuracy and it is showing normally at around 71. However, the two accuracy values for the training set are both around 25, and I'm...

Sorry to bother you, I would like to ask you a question. How can I use your model to calculate the model parameters, flops and inference time? The code I...