-
I am applying the use of Keras models that utilize probabilistic layers. The model below, which used to work normally, now presents the following error:
inputs = tf.keras.Input(shape=(X_train.shape…
-
**System information**.
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Ubuntu 22.04
- TensorFlow installed from (source or binary): source
- TensorFlow version (use command below): 2.16…
-
So I got the following error when using keras2json.py for a model with no-bias layers.
```
bias = layers["bias"+BACKEND_SUFFIX]
KeyError: 'bias:0'
```
While some would argue one should alwa…
-
Hi @remicres !
The last week tensorflow released the [2.16.0-rc version](https://github.com/tensorflow/tensorflow/releases). One interesting point is that Keras 3 will be the default version. [Kera…
-
The attached example shows a Keras model with a single layer LSTM that is converted to a loop instead of the expected ONNX LSTM op.
Test system configuration:
Using `tensorflow/tensorflow:2.7.1` d…
-
Hi,
I notice ops.image.affine_transform() does not work as part of a model in GPU
TF version: 2.16.1
keras version: 3.5.0
Some observations from some testing
1. model.predict_step() works, b…
-
Hi @slundberg,
I'm using DeepExplainer for a Keras functional model that combines two (pre-trained) models but I'm getting a weird error:
```
explainer_test = shap.DeepExplainer(model_wrapped, …
-
I'm simply having an Import error
Try running this code
```
>>> from keras_vggface import utils
Traceback (most recent call last):
....
ImportError: cannot import name 'layer_utils' from 'kera…
-
### Before You Report a Bug, Please Confirm You Have Done The Following...
- [X] I have updated to the latest version of the packages.
- [X] I have searched for both [existing issues](https://github.…
-
I have problems when running the following mini example with Tensorflow V2.17 (similar problems also with V2.16):
```
import tensorflow as tf
import numpy as np
data_x=np.random.random((64,10)…