asheshjain399 / RNNexp

Other
256 stars 91 forks source link

Pik file format #4

Closed MotazAlhami closed 7 years ago

MotazAlhami commented 8 years ago

Hi I want to ask you about the input and output files (.pik format). How can I access these files correctly. I would like to see the actual input features style.

una-dinosauria commented 7 years ago

.pik usually corresponds to a cPickle object. You may want to try something like

import cPickle
my_data = cPickle.load( open( 'my_file.pik' ))

and see how that goes.