Skip to content

Instantly share code, notes, and snippets.

View zwithz's full-sized avatar
:bowtie:
meow~

Zack Zhou zwithz

:bowtie:
meow~
View GitHub Profile
@geohot
geohot / extract.py
Last active July 18, 2022 05:13
extract imagenet ILSVRC2012 recursive tar
# extract ILSVRC2012 without killing your SSD
import tarfile
import os
import sys
def mkdir(x):
try:
os.makedirs(x)
except OSError, e: