Datasets:
Tasks:
Text Generation
Modalities:
Text
Sub-tasks:
language-modeling
Languages:
English
Size:
100K - 1M
License:
File size: 325 Bytes
afd65d6 4365a98 afd65d6 4365a98 afd65d6 4365a98 afd65d6 4365a98 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
from datasets import load_dataset
from itertools import islice
dataset = load_dataset("./proof-pile.py", "books")
print("BOOKS")
print(dataset)
dataset = load_dataset("./proof-pile.py", "formal")
print("FORMAL")
print(dataset)
dataset = load_dataset("./proof-pile.py", "stack-exchange")
print("FORMAL")
print(dataset)
|