memory map npy files
Mem-map the stored array, and then access the second row directly from disk:
X = np.load('/tmp/123.npy', mmap_mode='r')
Mem-map the stored array, and then access the second row directly from disk:
X = np.load('/tmp/123.npy', mmap_mode='r')