voxtral-emotion-speech / check_iemocap.py
MrlolDev's picture
Upload check_iemocap.py with huggingface_hub
174bfcb verified
raw
history blame contribute delete
295 Bytes
# Check IEMOCAP dataset structure
from datasets import load_dataset
ds = load_dataset("AudioLLMs/iemocap_emotion_recognition")
print("Dataset:", ds)
print("\nTest sample keys:", ds["test"][0].keys())
print("\nFirst 3 samples:")
for i in range(3):
s = ds["test"][i]
print(f" {i}: {s}")