François Chollet
François Chollet
One drive-by comment. If you care about speed, you should use a tf.function. Something like ``` import tensorflow as tf import numpy as np from tensorflow.keras.activations import softmax from tensorflow...
Thanks for the PR! Can you provide a few screenshots of what the plots look like?
The codebase has been reformatted previously. Thanks!
The codebase has been reformatted previously. Thanks!
The codebase has been reformatted previously. Thanks!
Sorry for the delay in reviewing this. > On the other hand, I thought about another option I think simply having the content of the current `def _update_trackables(self):` get called...
> For other backends, validation_split was a problem. So, I tried with validation_data instead but still got an attribute error. What was the error in either case? Can you share...
Thanks for the report. It looks like we only support np arrays and tf tensors for validation_split. This can be fixed easily, actually. Let me just do that in Keras.
Done. You can retry after building Keras from sources.
Just replace `.numpy()` with `ops.convert_to_numpy` which should work with any tensor.