File size: 388 Bytes
6f80449
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/python3
# -*- coding: utf-8 -*-
from datasets import load_dataset
from tqdm import tqdm


def main():
    dataset = load_dataset(
        "vm_sound_classification.py",
        name="th-TH",
        split="train",
        trust_remote_code=True,
    )
    print(dataset)

    for sample in tqdm(dataset):
        print(sample)
    return


if __name__ == '__main__':
    main()