Dataset Viewer
The dataset viewer is not available for this dataset.
The JWT signature verification failed. Check the signing key and the algorithm.
Error code:   JWTInvalidSignature
Exception:    InvalidSignatureError
Message:      Signature verification failed
Traceback:    Traceback (most recent call last):
                File "/src/libs/libapi/src/libapi/jwt_token.py", line 286, in validate_jwt
                  decoded = jwt.decode(
                      jwt=token,
                  ...<2 lines>...
                      options=options,
                  )
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jwt.py", line 368, in decode
                  decoded = self.decode_complete(
                      jwt,
                  ...<8 lines>...
                      leeway=leeway,
                  )
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jwt.py", line 265, in decode_complete
                  decoded = self._jws.decode_complete(
                      jwt,
                  ...<3 lines>...
                      detached_payload=detached_payload,
                  )
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jws.py", line 270, in decode_complete
                  self._verify_signature(
                  ~~~~~~~~~~~~~~~~~~~~~~^
                      signing_input,
                      ^^^^^^^^^^^^^^
                  ...<4 lines>...
                      options=merged_options,
                      ^^^^^^^^^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jws.py", line 417, in _verify_signature
                  raise InvalidSignatureError("Signature verification failed")
              jwt.exceptions.InvalidSignatureError: Signature verification failed

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

Synthesis SER Dataset

Overview

This dataset contains synthetic speech audio files for Speech Emotion Recognition (SER) training, specifically designed for training the emotion2vec model. The data is generated using two state-of-the-art TTS systems: CosyVoice2 and Kimi-Audio.

Paper

If you use this dataset, please cite our paper:

https://arxiv.org/pdf/2603.16483

Dataset Structure

Each subdirectory corresponds to a source emotional speech dataset and contains synthetic data generated using both TTS engines:

Subdirectory Source TTS Engines # WAV Files
CREMA_D_SYN.tar.gz CREMA-D CosyVoice2 + Kimi-Audio 2,236
IEMOCAP_SYN.tar.gz IEMOCAP CosyVoice2 + Kimi-Audio 3,570
LLM_DATA_SYN.tar.gz LLM_DATA CosyVoice2 + Kimi-Audio 3,155
RAVDESS_SYN.tar.gz RAVDESS CosyVoice2 + Kimi-Audio 12
SAVEE_SYN.tar.gz SAVEE CosyVoice2 + Kimi-Audio 124
TESS_SYN.tar.gz TESS CosyVoice2 + Kimi-Audio 12,397

Internal Structure

Each tar.gz contains:

β”œβ”€β”€ cosyvoice2/
β”‚   β”œβ”€β”€ train/
β”‚   β”‚   β”œβ”€β”€ *.wav
β”‚   β”‚   └── train.json
β”‚   └── test/
β”‚       β”œβ”€β”€ *.wav
β”‚       └── test.json
└── kimi-audio/
    β”œβ”€β”€ train/
    β”‚   β”œβ”€β”€ *.wav
    β”‚   └── train.json
    └── test/
        β”œβ”€β”€ *.wav
        └── test.json

Each train.json / test.json contains metadata:

{
  "emotion": "angry",
  "wav_path": "..."
}

Supported Emotions

  • angry
  • disgust
  • fearful
  • happy
  • neutral
  • sad
  • surprised

Real Data Sources

Since the real emotional speech data is publicly available, we only host the synthetic data on HuggingFace. If you need the real data for research, please download from the original sources:

Usage

from huggingface_hub import hf_hub_download

# Download and extract a dataset
repo_id = "ak0255/Synthesis_SER"
filename = "SAVEE_SYN.tar.gz"
path = hf_hub_download(repo_id=repo_id, filename=filename, repo_type="dataset")

License

Apache 2.0

Downloads last month
30

Paper for ak0255/Synthesis_SER