File size: 524 Bytes
96ced71 e7709f5 96ced71 e7709f5 96ced71 e7709f5 96ced71 e7709f5 96ced71 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
from datasets import load_dataset
from tqdm import tqdm
import time
def main():
for subset in ["arxiv", "open-web-math", "algebraic-stack"]:
for split in ["train", "validation", "test"]:
data = load_dataset("proof-pile-2.py", subset)[split]
print(data)
start = time.time()
for x in tqdm(data):
pass
total = time.time() - start
print(f"Traversed {subset}-{subset} in {total} seconds")
if __name__=="__main__":
main()
|