Reputation: 11
I am trying to load data from pickle file but it returned me memory address instead of values. Is there any solution?
import numpy as np
import cPickle
import lasagne
import theano
import theano.tensor as T
fa=open('fahad.pkl', 'rb')
c=cPickle.load(fa)
print(c)
(<network.Network object at 0x00000000BFC8E908>, <network.Network
object at 0x00000000665C93C8>, <network.Network object at
0x00000000C014B630>)
Network is another python file in same folder.
Upvotes: 1
Views: 142