All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.edux.util.LabelDimensionConverter Maven / Gradle / Ivy

The newest version!
package de.edux.util;

public class LabelDimensionConverter {
  public static int[] convert2DLabelArrayTo1DLabelArray(double[][] labels) {
    int[] decisionTreeTrainLabels = new int[labels.length];
    for (int i = 0; i < labels.length; i++) {
      for (int j = 0; j < labels[i].length; j++) {
        if (labels[i][j] == 1) {
          decisionTreeTrainLabels[i] = (j + 1);
        }
      }
    }
    return decisionTreeTrainLabels;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy