tweets / main.py
qgyd2021's picture
first commit
0be65ae
raw
history blame contribute delete
298 Bytes
#!/usr/bin/python3
# -*- coding: utf-8 -*-
from datasets import load_dataset
dataset = load_dataset(
"tweets.py",
name="tweets_with_emoji",
split="train",
trust_remote_code=True,
streaming=True,
)
for sample in dataset:
print(sample)
if __name__ == '__main__':
pass