(x, y=None, sample_weights=None)
| 532 | # Match signature of other modes to allow |
| 533 | # 1, 2, or 3-tuples from generator |
| 534 | def predict_on_batch(x, y=None, sample_weights=None): # pylint: disable=unused-argument |
| 535 | return model.predict_on_batch(x) |
| 536 | |
| 537 | f = predict_on_batch |
| 538 |
nothing calls this directly
no test coverage detected