predict_on_batch {keras3} | R Documentation |
Returns predictions for a single batch of samples.
Description
Returns predictions for a single batch of samples.
Usage
predict_on_batch(object, x)
Arguments
object |
Keras model object |
x |
Input data. It must be array-like. |
Value
Array(s) of predictions.
See Also
Other model training:
compile.keras.src.models.model.Model()
evaluate.keras.src.models.model.Model()
predict.keras.src.models.model.Model()
test_on_batch()
train_on_batch()
[Package keras3 version 1.1.0 Index]