CoolFace
Datasetpublic

Emova-ollm/emova-asr-tts-eval

EMOVA-ASR-TTS-Eval πŸ€— EMOVA-Models | πŸ€— EMOVA-Datasets | πŸ€— EMOVA-Demo πŸ“„ Paper | 🌐 Project-Page | πŸ’» Github | πŸ’» EMOVA-Speech-Tokenizer-Github Overview EMOVA-ASR-TTS-Eval is a dataset designed for evaluating the ASR and TTS performance of Omni-modal LLMs. It is derived from the test-clean set of the LibriSpeech dataset. This dataset is part of the EMOVA-Datasets collection. We extract the speech units using the EMOVA Speech Tokenizer. Structure… See the full description on the dataset page: https://huggingface.co/datasets/Emova-ollm/emova-asr-tts-eval.

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes245downloads
Dataset Card

EMOVA-ASR-TTS-Eval

<div align="center">

<img src="https://emova-ollm.github.io/static/images/icons/emova_icon2.png" width="300em"></img>

πŸ€— EMOVA-Models | πŸ€— EMOVA-Datasets | πŸ€— EMOVA-Demo <br/> πŸ“„ Paper | 🌐 Project-Page | πŸ’» Github | πŸ’» EMOVA-Speech-Tokenizer-Github </div>

Overview

EMOVA-ASR-TTS-Eval is a dataset designed for evaluating the ASR and TTS performance of Omni-modal LLMs. It is derived from the test-clean set of the LibriSpeech dataset. This dataset is part of the EMOVA-Datasets collection. We extract the speech units using the EMOVA Speech Tokenizer.

Structure

This dataset contains two types of data samples:

  • β€”Automated Speech Recognition (ASR): recognize the corresponding plain texts given speech unit inputs.
  • β€”Text-to-Speech (TTS): generate speech units given the plain text inputs.

Getting Started

This dataset is organized in the official LLaVA data format and can be accessed with the HuggingFace datasets API. For more details on evaluating EMOVA with this dataset, check our github repo.

python
from datasets import load_dataset

dataset = load_dataset("Emova-ollm/emova-asr-tts-eval", name="librispeech-asr-tts", split='test')

# should be a dictionary containing
# {"id": sample identification, 'conversations': containing speech units}
for data in dataset:
    print(data)

Citation

bibtex
@article{chen2024emova,
  title={Emova: Empowering language models to see, hear and speak with vivid emotions},
  author={Chen, Kai and Gou, Yunhao and Huang, Runhui and Liu, Zhili and Tan, Daxin and Xu, Jing and Wang, Chunwei and Zhu, Yi and Zeng, Yihan and Yang, Kuo and others},
  journal={arXiv preprint arXiv:2409.18042},
  year={2024}
}