pub trait LabelProblem: ProblemBase { type T; // Required method fn label(&self, i: usize) -> Self::T; }
Training problem providing labels for each sample
Type of the labels
Gets the label of the ith sample.