NeuralNine / neuralintents

A simple interface for working with intents and chatbots.
MIT License
249 stars 135 forks source link

ImportError: `save_model` requires h5py. #11

Closed editid0 closed 3 years ago

editid0 commented 3 years ago

Traceback:

Traceback (most recent call last):
  File "/home/pi/.local/lib/python3.7/site-packages/quart/app.py", line 1467, in handle_request
    return await self.full_dispatch_request(request_context)
  File "/home/pi/.local/lib/python3.7/site-packages/quart/app.py", line 1492, in full_dispatch_request
    result = await self.handle_user_exception(error)
  File "/home/pi/.local/lib/python3.7/site-packages/quart/app.py", line 968, in handle_user_exception
    raise error
  File "/home/pi/.local/lib/python3.7/site-packages/quart/app.py", line 1490, in full_dispatch_request
    result = await self.dispatch_request(request_context)
  File "/home/pi/.local/lib/python3.7/site-packages/quart/app.py", line 1536, in dispatch_request
    return await self.ensure_async(handler)(**request_.view_args)
  File "main.py", line 18, in index
    assistant.save_model()
  File "/home/pi/.local/lib/python3.7/site-packages/neuralintents/main.py", line 116, in save_model
    self.model.save(f"{self.model_name}.h5", self.hist)
  File "/home/pi/.local/lib/python3.7/site-packages/tensorflow_core/python/keras/engine/network.py", line 986, in save
    signatures, options)
  File "/home/pi/.local/lib/python3.7/site-packages/tensorflow_core/python/keras/saving/save.py", line 112, in save_model
    model, filepath, overwrite, include_optimizer)
  File "/home/pi/.local/lib/python3.7/site-packages/tensorflow_core/python/keras/saving/hdf5_format.py", line 73, in save_model_to_hdf5
    raise ImportError('`save_model` requires h5py.')
ImportError: `save_model` requires h5py.

Yes, this is running with quart, on a local webserver, and on a raspberry pi I've tried re-installing h5py, but it doesn't seem to work

editid0 commented 3 years ago

This worked https://github.com/keras-team/keras/issues/3426#issuecomment-238514127