keras.ops.image.map_coordinates
fails on uint8
input with TensorFlow backend
#20608
Labels
keras.ops.image.map_coordinates
fails on uint8
input with TensorFlow backend
#20608
Consider the following simple example
that is expected to yield
[[0]]
. However, withKERAS_BACKEND=tensorflow
this code snippet results inThe problem does not occur if I change the
dtype
ofimage
fromuint8
tofloat32
or switch either to thejax
ortorch
backends. Also changing thefill_mode
fromconstant
tonearest
avoids the issue.Keras version: 3.7.0
The text was updated successfully, but these errors were encountered: