lisa-groundhog / GroundHog

Library for implementing RNNs with Theano
BSD 3-Clause "New" or "Revised" License
598 stars 229 forks source link

Error in convert-pkl2hdf5.py #41

Open tareksakakini opened 8 years ago

tareksakakini commented 8 years ago

Hello everyone,

When running the following command:

python convert-pkl2hdf5.py binarized_text.en.pkl binarized_text.en.h5

I'm getting the following error:

'File' object has no attribute 'createEArray'

Anybody got insights on what could be the mistake I'm doing?

nouiz commented 8 years ago

This software isn't supported anymore. Look at the github web site, we point to another project.

You probably have an old or bad installation of pytables or h5py.

On Tue, Nov 3, 2015 at 9:24 PM, Tarek Sakakini notifications@github.com wrote:

Hello everyone,

When running the following command:

python convert-pkl2hdf5.py binarized_text.en.pkl binarized_text.en.h5

I'm getting the following error:

'File' object has no attribute 'createEArray'

Anybody got insights on what could be the mistake I'm doing?

— Reply to this email directly or view it on GitHub https://github.com/lisa-groundhog/GroundHog/issues/41.

wang-a-zhuo commented 7 years ago

This is because that your pytables is 3.x but the code is written based on pytables 2.x the function createEArray is replaced as create_earray in pytables 3.x, as well as function createTable see details here: http://www.pytables.org/MIGRATING_TO_3.x.html