hypersunflower/a_sad_model
Voice Activity Detection
•
Updated
•
1
The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.
this dataset was created using data from nccratliri/vad-human-ava-speech
i just converted audio to log mel spectogram, as a part of my pet project
the code with processing steps can be found here: https://github.com/ertan-somundzhu/sad-model
download the processed version with:
from huggingface_hub import snapshot_download
snapshot_download('hypersunflower/ava_speech_data_log_mel_spec', local_dir = "data/human-ava-speech", repo_type="dataset" )
load the processed data with:
import os
import numpy as np
data = np.load(os.path.abspath("data/human-ava-speech/dataset.npz"))
mel = data["mel"]
onset = data["onset"]
offset = data["offset"]
filenames = data["filenames"]