lighthouse-emnlp2024/AM-DETR
Updated
•
205
Error code: TooBigContentError
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.
This repository provides wav files used in Language-based audio moment retrieval.
Each sample includes long audio containing some audio events with the temporal and textual annotation.
import torch
import webdataset as wds
from huggingface_hub import get_token
from torch.utils.data import DataLoader
hf_token = get_token()
url = "https://huggingface.co/datasets/lighthouse-emnlp2024/Clotho-Moment/resolve/main/train/train-{{001..002}}.tar"
url = f"pipe:curl -s -L {url} -H 'Authorization:Bearer {hf_token}'"
dataset = wds.WebDataset(url, shardshuffle=None).decode(wds.torch_audio)
for sample in dataset:
print(sample.keys())
@inproceedings{munakata2025language,
title={Language-based Audio Moment Retrieval},
author={Munakata, Hokuto and Nishimura, Taichi and Nakada, Shota and Komatsu, Tatsuya},
booktitle={ICASSP 2025-2025 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
pages={1--5},
year={2025},
organization={IEEE}
}