giangndm's picture
Upload dataset
e7db5cd verified
|
Raw
History Blame Contribute Delete
1.64 kB
---
language: vi
tags:
- audio
- speech
- features
- wav2vec2
- representation
- tokenized
- alignment
- kmeans
license: mit
dataset_info:
features:
- name: domain
dtype: string
- name: text
dtype: string
- name: tokens
sequence: int64
splits:
- name: wavjepa
num_bytes: 1165942742.0
num_examples: 285032
download_size: 225850764
dataset_size: 1165942742.0
configs:
- config_name: default
data_files:
- split: wavjepa
path: data/wavjepa-*
---
# Vietnamese Wav2Vec2 Feature & K-Means Tokenized Dataset
This repository contains the structured speech features and tokenized cluster indices for the target `pw733` and clean `viVoice` Vietnamese datasets, formatted as Parquet tables.
## πŸ“Š Dataset Schema
- **`audio_uuid`** (string): Unique identifier of the audio file.
- **`text`** (string): Transcription text (empty for raw `pw733` audio).
- **`features`** (list of list of float): Frame-level Wav2Vec2 embeddings (`[Num_Frames, 768]`).
- **`indices`** (list of int32): The mapped discrete token IDs matching the K-Means centroids (`[Num_Frames]`).
- **`dataset_origin`** (string): Source dataset name (`pw733` or `viVoice`).
## πŸ”— Mapped K-Means Model
This dataset is tokenized using the 16,384 K-Means centroids hosted at:
πŸ‘‰ **[giangndm/wav2vec2-vietnamese-kmeans-16384](https://huggingface.co/giangndm/wav2vec2-vietnamese-kmeans-16384)**
## πŸš€ Usage
```python
from datasets import load_dataset
ds = load_dataset("giangndm/audio-confidence-alignment")
print(ds["train"][0])
```
---
*Developed as part of the Multi-Project Voice Research Spike under `rd-lumi/luvox-vibe-research`.*