#!/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() | |