Python August 30, 2012 9:19PM EDT Report abuse
Wrap text
1 2 3 4 5 6 7 8 9 10
import numpy as np #data X = np.random.random((100, 100)) #save your data into npy file np.save('data.npy', X) #load the data quickly X = np.load('data.npy')
Embed Code