Skip to content

Others

[Solved] ‘Object arrays cannot be loaded when allow_pickle=False’

python
Display Python code on the screen

Introduction

I often got this error message when I learning about machine learning by Python, recently.

'Object arrays cannot be loaded when allow_pickle=False'

The reason for this message is actually very clearly. In fact, it’s just that “allow_pickle” is adjusted to False after Numpy package is upgraded.

And it caused us to be hindered when reading some pickle-encapsulated training data.

Read More »[Solved] ‘Object arrays cannot be loaded when allow_pickle=False’