Evaluate neural network model
Returns the loss value and the metric values for a model in test mode. Computation is done in batches.
Inputs
-
Model — DynamicObject
The trained model to evaluate.
-
Testing X — Tensor
Test input data.
-
Testing Y — Tensor
Test output data.
-
Batch size — Integer
Number of samples per batch of computation.
Outputs
-
Loss — Float
Test loss of the model.
-
Metric values — DynamicObject
A DynamicObject mapping metric names to their corresponding value (Float).