File size: 279 Bytes
2d11779
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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