Keras Debugging, forward pass

How do I set a break point in the keras model?

I am talking about this one. Can I set a break point on the forward pass of the model. If yes, where?

Hi @kjewqr123

Welcome to the TensorFlow Forum!

You can try using Tensorflow Callbacks for the same task. There are multiple default callbacks available to use as per your requirements. You can also customize the callbacks with its available methods eg. on_batch_begin(), on_epoch_begin() with some conditions to perform accordingly.

Please refer to the mentioned links for more details.