This is a sample 1-percent of the entire 50M-row QuickDraw! dataset. The row for each drawing contains a byte-encoded packed representation of the drawing and data, which you can unpack using the following snippet:
def unpack_drawing(file_handle):
key_id, = unpack('Q', file_handle.read(8))
country_code, = unpack('2s', file_handle.read(2))
recognized, = unpack('b', file_handle.read(1))
timestamp, = unpack('I'… See the full description on the dataset page:
https://huggingface.co/datasets/kmewhort/quickdraw-bins-1pct-sample.