CoolFace
Datasetpublic

DeSTA-ntu/DeSTA-AQA5M-FROM-Llama3.1-8B-Instruct

πŸ“‘ Paper | πŸ‘©β€πŸ’» Github | πŸ€— Model | πŸ€— Dataset DeSTA-AQA5M comprises 50 speech, environmental sound, and music datasets, totaling over 7,000 hours of audio. Our training framework centers on self-generated response for efficient cross-modal alignment. (see our paper!). In DeSTA, each audio clip is first transformed into a textual description using its metadata. A Large Language Model (LLM) is then prompted with this description to self-generate a response. Ultimately, we construct a… See the full description on the dataset page: https://huggingface.co/datasets/DeSTA-ntu/DeSTA-AQA5M-FROM-Llama3.1-8B-Instruct.

sourceHugging Faceupdated 1y agoView on Hugging Face
5likes235downloads
Dataset Card

πŸ“‘ Paper | πŸ‘©β€πŸ’» Github | πŸ€— Model | πŸ€— Dataset

DeSTA-AQA5M comprises 50 speech, environmental sound, and music datasets, totaling over 7,000 hours of audio. Our training framework centers on self-generated response for efficient cross-modal alignment. (see our paper!). In DeSTA, each audio clip is first transformed into a textual description using its metadata. A Large Language Model (LLM) is then prompted with this description to self-generate a response. Ultimately, we construct a large-scale dataset of 5 million audio–instruction–response triplets, enabling effective finetuning of a Large Audio Language Model (LALM)β€”without the need for task-specific instruction data.

Response Generated FromHuggingFace IDPreview
DeSTA-AQA5MLlama3.1-8B-InstructDeSTA-ntu/DeSTA-AQA5M-FROM-Llama3.1-8B-InstructπŸ”

Check GitHub dataset document for more details!

Load Dataset

python
from datasets import load_dataset

dataset = load_dataset("DeSTA-ntu/DeSTA-AQA5M-FROM-Llama3.1-8B-Instruct")

# Load from chunked data files
# dataset = load_dataset("DeSTA-ntu/DeSTA-AQA5M-FROM-Llama3.1-8B-Instruct", data_files=["audio.0.jsonl", "audio.1.jsonl", "speech.0.jsonl", "speech.1.jsonl"])
DatasetDict({
    train: Dataset({
        features: ['id', 'dataset', 'seed_description', 'prompt', 'response', 'messages'],
        num_rows: 4963845
    })
})
  • β€”Core fields (used for dataset generation and training):
  • β€”messages: The input messages used for data generation and model training.
  • β€”response: The model-generated response (used as the training target).
  • β€”Auxiliary fields (for display or metadata purposes):
  • β€”id: Audio file ID(relative audio filepath)
  • β€”dataset: The source dataset.
  • β€”seed_description: The textual description constructed from the audio metadata.
  • β€”prompt: The sampled prompt from the instruction pool.