qgyd2021's picture
[update]add main
2d11779
raw
history blame contribute delete
279 Bytes
#!/usr/bin/python3
# -*- coding: utf-8 -*-
from datasets import load_dataset
dataset = load_dataset(
"e_commerce_customer_service.py",
name="faq",
# name="product",
split="train",
)
for sample in dataset:
print(sample)
if __name__ == '__main__':
pass