I am trying to train a CNN using Lasagne and NoLearn. After, the learning is over, I want to store the neuralnetwork parameters.
Specifically,
nn = net1.fit(X_train, y_train) # train neural net
with open('nn.pickle', 'wb') as f:
pickle.dump(nn2, f, -1)
I am not being able to use pickle() because the size of object (nn) is some tens of GB. How can I store such a large sized object on disc?
Avisek