You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed tensorflow (2.16.1) and QKeras (0.9.0). Trying to run this code gives me ModuleNotFoundError: No module named 'pyparsing'.. After installing that module (3.1.2) I get ModuleNotFoundError: No module named 'tf_keras'.. After installing that (2.16.0) I get the following error:
Traceback (most recent call last):
File "/home/me/wtf/test.py", line 22, in <module>
model.fit(train_data, train_labels)
File "/home/me/.pyenv/versions/3.11.8/lib/python3.11/site-packages/keras/src/utils/traceback_utils.py", line 122, in error_handler
raise e.with_traceback(filtered_tb) from None
File "/home/me/.pyenv/versions/3.11.8/lib/python3.11/site-packages/qkeras/qlayers.py", line 629, in call
quantized_kernel = self.kernel_quantizer_internal(self.kernel)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/me/.pyenv/versions/3.11.8/lib/python3.11/site-packages/qkeras/quantizers.py", line 558, in __call__
x = K.cast_to_floatx(x)
^^^^^^^^^^^^^^^^^^^
NotImplementedError: Exception encountered when calling QDense.call().
numpy() is only available when eager execution is enabled.
Arguments received by QDense.call():
• inputs=tf.Tensor(shape=(32, 784), dtype=float32)
Using python 3.11.8 with pip 24.0 on Ubuntu 22.04.4 LTS.
Note: It is working with tensorflow==2.15.1 and tf_keras==2.15.1.
The text was updated successfully, but these errors were encountered:
lp247
changed the title
Installation fails due to missing modules and numpy error message
QKeras fails due to missing modules and numpy error message with latest TensorFlow version 2.16.1
Apr 6, 2024
I have the following code:
I installed tensorflow (2.16.1) and QKeras (0.9.0). Trying to run this code gives me
ModuleNotFoundError: No module named 'pyparsing'.
. After installing that module (3.1.2) I getModuleNotFoundError: No module named 'tf_keras'.
. After installing that (2.16.0) I get the following error:Using python 3.11.8 with pip 24.0 on Ubuntu 22.04.4 LTS.
Note: It is working with tensorflow==2.15.1 and tf_keras==2.15.1.
The text was updated successfully, but these errors were encountered: