File size: 1,196 Bytes
7ebfc71
e9ba2a8
 
 
 
 
 
 
 
 
7ebfc71
e9ba2a8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
language:
- vi
license: other
task_categories:
- audio-classification
- automatic-speech-recognition
pretty_name: ViMD Truncated 10s (16kHz)
size_categories:
- 10K<n<100K
---

# ViMD Truncated 10s — 16kHz

Preprocessed version of **ViMD** (Nguyen et al., EMNLP 2024) for Dialect Identification.

## Preprocessing applied
- **Resample:** 44.1kHz (original) → **16kHz, mono**
- **Truncate:** only the **FIRST 10 SECONDS** of each audio are kept
  (files shorter than 10s are kept intact). **1 original file = 1 sample.**
  This follows the truncation strategy of Lu et al. (2020), NOT chunking.
- **Splits:** original ViMD train/valid/test kept unchanged (speaker-exclusive).

## New column vs. original ViMD
- `new_province`: province name **after the administrative merger** (34 classes),
  mapped from the original `province` column (63 classes).

## Usage
```python
from datasets import load_dataset
ds = load_dataset("tannhoo06/ViMD_preprocessing")
```

## EDA without downloading audio
```python
import pandas as pd
meta = pd.read_parquet("hf://datasets/tannhoo06/ViMD_preprocessing/metadata.parquet")
```

## Citation
Please cite the original ViMD paper (Nguyen et al., EMNLP 2024).