List of usage examples for org.deeplearning4j.eval Evaluation eval
void eval(INDArray labels, INDArray networkPredictions, List<? extends Serializable> recordMetaData);
From source file:aiLogicImplementation.RNNBasic.java
License:Apache License
@Override public void evaluate() { Evaluation evaluation = new Evaluation(4); evaluation.eval(labels, input, net); System.out.println(evaluation.stats()); }