-
-
Save databill86/f16a1b742f879d60e7ae466dde5d07c1 to your computer and use it in GitHub Desktop.
Revisions
-
thomwolf revised this gist
Jun 15, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,4 +12,4 @@ """ time = timeit.timeit(stmt=s, number=1, globals=globals()) size = wiki.dataset_size / 2**30 print(f"Iterated over the {size:.1f} GB dataset in {time:.1f} s, i.e. {size * 8/time:.1f} Gbit/s") -
thomwolf created this gist
Jun 15, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ import os; import psutil; import timeit from nlp import load_dataset mem_before = psutil.Process(os.getpid()).memory_info().rss >> 20 wiki = load_dataset("wikipedia", "20200501.en", split='train') mem_after = psutil.Process(os.getpid()).memory_info().rss >> 20 print(f"RAM memory used: {(mem_after - mem_before)} MB") s = """batch_size = 1000 for i in range(0, len(wiki), batch_size): batch = wiki[i:i + batch_size] """ time = timeit.timeit(stmt=s, number=1, globals=globals()) size = wiki.dataset_size / 2**30 print(f"Iterated over the {size:.1f} GB dataset in {time:.1f} s, i.e. {size/time:.1f} Gbit/s")