Skip to content Skip to sidebar Skip to footer

Unable To Load A Previously Dumped Pickle File In Python

The implemented algorithm which I use is quite heavy and has three parts. Thus, I used pickle to dump everything in between various stages in order to do testing on each stage sepa

Solution 1:

It is a NumPy bug that has been fixed recently in this pull request. To reproduce it, try:

import cPickle
import numpy as np
cPickle.loads(cPickle.dumps(np.string_('')))

Post a Comment for "Unable To Load A Previously Dumped Pickle File In Python"