Package org.nd4j.autodiff.listeners
Class ListenerEvaluations
- java.lang.Object
-
- org.nd4j.autodiff.listeners.ListenerEvaluations
-
public class ListenerEvaluations extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classListenerEvaluations.Builder
-
Constructor Summary
Constructors Constructor Description ListenerEvaluations(Map<String,List<IEvaluation>> trainEvaluations, Map<String,Integer> trainEvaluationLabels, Map<String,List<IEvaluation>> validationEvaluations, Map<String,Integer> validationEvaluationLabels)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ListenerEvaluations.Builderbuilder()booleanisEmpty()ListenerVariablesrequiredVariables()Get the required variables for these evaluationsMap<String,Integer>trainEvaluationLabels()Get the label indices for the requested training evaluationsMap<String,List<IEvaluation>>trainEvaluations()Get the requested training evaluationsMap<String,Integer>validationEvaluationLabels()Get the label indices for the requested validation evaluationsMap<String,List<IEvaluation>>validationEvaluations()Get the requested validation evaluations
-
-
-
Method Detail
-
builder
public static ListenerEvaluations.Builder builder()
-
trainEvaluations
public Map<String,List<IEvaluation>> trainEvaluations()
Get the requested training evaluations
-
trainEvaluationLabels
public Map<String,Integer> trainEvaluationLabels()
Get the label indices for the requested training evaluations
-
validationEvaluations
public Map<String,List<IEvaluation>> validationEvaluations()
Get the requested validation evaluations
-
validationEvaluationLabels
public Map<String,Integer> validationEvaluationLabels()
Get the label indices for the requested validation evaluations
-
requiredVariables
public ListenerVariables requiredVariables()
Get the required variables for these evaluations
-
isEmpty
public boolean isEmpty()
- Returns:
- true if there are no requested evaluations
-
-