I am trying to call a function from tensorflow to decode a tiff image, while i am running the notebook on kaggle notebooks and in this line:
img = tfio.experimental.image.decode_tiff(img, channels=1)
It gives me the error:
AttributeError: in user code:
<ipython-input-5-d30698f56813>:11 load * img = tfio.experimental.image.decode_tiff(img, channels=1) AttributeError: module 'tensorflow.io' has no attribute 'experimental'
I'm currently importing tensorflow.io like this:
import tensorflow.io as tfio
And my current version of: print(f"Tensorflow ver. {tf.__version__}") is
Tensorflow ver. 2.3.0