You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But when I run EasyTrain.evaluateDataset(trainer, testSet);
nothing is printed on the standard output and the function returns void.
How can I check the results of the evaluation?
The evaluateDataset is automatically run during EasyTrain.fit() at the end of each epoch. It is designed to collect the metrics to see how the validation evaluation changes. You can view those results using trainer.getTrainingResult()
Description
When I run
EasyTrain.fit(trainer, numEpochs, trainingSet, null);
I get the metrics in the standard output like this:But when I run
EasyTrain.evaluateDataset(trainer, testSet);
nothing is printed on the standard output and the function returns void.
How can I check the results of the evaluation?
My code
The text was updated successfully, but these errors were encountered: