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

Fix type issue

parent fa63c231
No related branches found
No related tags found
1 merge request!4Neural network
Pipeline #2296 failed
......@@ -70,7 +70,7 @@ public final class MainTest {
start_time = System.currentTimeMillis();
System.out.println("Neural Network learning");
HashMap<MultiLayerNetwork, Double> map_nn = nn.runKFold(folds, 10);
end_time = System.currentTimeMillis()
end_time = System.currentTimeMillis();
System.out.println("Execution time : " + (end_time - start_time) / 1000 + " seconds");
double nn_score = 0.0;
......
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