You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EncogUtility.convertCSV2Binary does not use the header parameter. False is hard coded in the logic.
public static void convertCSV2Binary(final File csvFile,
final File binFile, final int inputCount, final int outputCount,
final boolean headers) {
binFile.delete();
final CSVNeuralDataSet csv = new CSVNeuralDataSet(csvFile.toString(),
inputCount, outputCount, false); // BUG HERE
final BufferedMLDataSet buffer = new BufferedMLDataSet(binFile);
buffer.beginLoad(inputCount, outputCount);
for (final MLDataPair pair : csv) {
buffer.add(pair);
}
buffer.endLoad();
}
The text was updated successfully, but these errors were encountered:
EncogUtility.convertCSV2Binary does not use the header parameter. False is hard coded in the logic.
The text was updated successfully, but these errors were encountered: