Post

Replies

Boosts

Views

Activity

AttributeError: module 'tensorflow.python.keras.layers' has no attribute 'RandomFlip'
I'm trying to run the example Cats and Dogs from keras, but when I try to run this: data_augmentation = keras.Sequential( [ layers.RandomFlip("horizontal"), layers.RandomRotation(0.1), ] ) I get this error: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) Cell In[5], line 3 1 data_augmentation = keras.Sequential( 2 [ ----> 3 layers.RandomFlip("horizontal"), 4 layers.RandomRotation(0.1), 5 ] 6 ) AttributeError: module 'tensorflow.python.keras.layers' has no attribute 'RandomFlip' Any ideas to solve this? Thanks in advance for your answer.
2
0
2.0k
Feb ’23