Java Code Examples for org.nd4j.evaluation.classification.Evaluation#scoreForMetric()
The following examples show how to use
org.nd4j.evaluation.classification.Evaluation#scoreForMetric() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ClassificationScoreCalculator.java From deeplearning4j with Apache License 2.0 | 4 votes |
@Override protected double finalScore(Evaluation e) { return e.scoreForMetric(metric); }
Example 2
Source File: EvaluationScoreFunction.java From deeplearning4j with Apache License 2.0 | 4 votes |
@Override public double score(MultiLayerNetwork net, DataSetIterator iterator) { Evaluation e = net.evaluate(iterator); return e.scoreForMetric(metric); }
Example 3
Source File: EvaluationScoreFunction.java From deeplearning4j with Apache License 2.0 | 4 votes |
@Override public double score(ComputationGraph graph, DataSetIterator iterator) { Evaluation e = graph.evaluate(iterator); return e.scoreForMetric(metric); }
Example 4
Source File: EvaluationScoreFunction.java From deeplearning4j with Apache License 2.0 | 4 votes |
@Override public double score(ComputationGraph graph, MultiDataSetIterator iterator) { Evaluation e = graph.evaluate(iterator); return e.scoreForMetric(metric); }