Keras and TensorBoard - AttributeError: 'Sequential' object has no attribute '_get_distribution_strategy'
You are mixing imports between keras
and tf.keras
, they are not the same library and doing this is not supported.
You should make all imports from one of the libraries, either keras
or tf.keras
.