web-dev-qa-db-fra.com

poids de charge nécessite h5py

J'essaie d'exécuter un modèle keras, d'utiliser un VGGnet -.__ pré-entraîné. Lorsque j'exécute cette commande base_model = applications.VGG16(weights='imagenet', include_top=False, input_shape=(img_rows, img_cols, img_channel))

Je reçois cette erreur:

  ``------------------------------------------------------------------
---------
ImportError                               Traceback (most recent call 
last)
<ipython-input-79-9b18deb3bc0f> in <module>()
  1 
----> 2 base_model = applications.VGG16(weights='imagenet', 
include_top=False, input_shape=(img_rows, img_cols, img_channel))

/usr/local/lib/python3.5/dist-packages/keras/applications/vgg16.py in 
VGG16(include_top, weights, input_tensor, input_shape, pooling, 
classes)
167                                     WEIGHTS_PATH_NO_TOP,
168                                     cache_subdir='models')
--> 169         model.load_weights(weights_path)
170         if K.backend() == 'theano':
171             layer_utils.convert_all_kernels_in_model(model)

/usr/local/lib/python3.5/dist-packages/keras/engine/topology.py in 
load_weights(self, filepath, by_name)
   2563         """
   2564         if h5py is None:
-> 2565             raise ImportError('`load_weights` requires h5py.')
   2566         f = h5py.File(filepath, mode='r')
   2567         if 'layer_names' not in f.attrs and 'model_weights' in f:

ImportError: `load_weights` requires h5py.``

Je suis passé par une page de problèmes de github où une question pertinente a été posée, mais aucune solution n’a été donnée . Des suggestions?

12
Ryan

Installez h5py: 

pip install h5py

Ou si vous utilisez conda:

conda install h5py
16
Y0da

techniquement, vous avez besoin de dépendances, telles que:

pip install cython
Sudo apt-get install libhdf5-dev
pip install h5py

Et redémarrez votre ordinateur portable Jupyter.

3
Jagesh Maharjan

dans le cas où "pip install h5py" ne fonctionne pas et que vous voyez quelque chose comme: "... déjà satisfait". en python 3, utilisez "pip3 install h5py"/cela fonctionnera.

2
Ali

les étapes ci-dessous ont résolu mon problème

conda uninstall h5py
pip install h5py 
0
issam