File size: 501 Bytes
1ab607b 6cc2785 8472d60 6cc2785 e219b0c 1ab607b |
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 |
#!/usr/bin/python3
# -*- coding: utf-8 -*-
from datasets import load_dataset, DownloadMode
dataset = load_dataset(
"spam_detect.py",
name="email_spam",
# name="sms_spam",
# name="spam_assassin",
# name="spam_detection",
split="train",
cache_dir=None,
download_mode=DownloadMode.FORCE_REDOWNLOAD
)
for sample in dataset:
text = sample["text"]
label = sample["label"]
print(text)
print(label)
print("-" * 12)
if __name__ == '__main__':
pass
|