Skip to content
Snippets Groups Projects
Commit 28049aed authored by a.croix's avatar a.croix
Browse files

Correction of checkstyle issues

parent 4a4cfee2
No related branches found
No related tags found
1 merge request!4Neural network
Pipeline #2251 failed
...@@ -145,8 +145,6 @@ public final class NeuralNetwork { ...@@ -145,8 +145,6 @@ public final class NeuralNetwork {
INDArray data_ind = Nd4j.create(data_array); INDArray data_ind = Nd4j.create(data_array);
INDArray expected_ind = Nd4j.create(expected_array); INDArray expected_ind = Nd4j.create(expected_array);
DataSet all_data = new DataSet(data_ind, expected_ind); DataSet all_data = new DataSet(data_ind, expected_ind);
System.out.println("Data : " + data_ind.rows() + " lines and " + data_ind.columns() + " columns.");
System.out.println("Expected : " + expected_ind.rows() + " lines and " + expected_ind.columns() + " columns.");
all_data.shuffle(); all_data.shuffle();
DataNormalization normalizer = new NormalizerStandardize(); DataNormalization normalizer = new NormalizerStandardize();
normalizer.fit(all_data); normalizer.fit(all_data);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment