diff --git a/src/main/java/de/lluni/javann/examples/ExampleXORBlankLayers.java b/src/main/java/de/lluni/javann/examples/ExampleXORAddedNeurons.java similarity index 97% rename from src/main/java/de/lluni/javann/examples/ExampleXORBlankLayers.java rename to src/main/java/de/lluni/javann/examples/ExampleXORAddedNeurons.java index c48f115..20d1da2 100644 --- a/src/main/java/de/lluni/javann/examples/ExampleXORBlankLayers.java +++ b/src/main/java/de/lluni/javann/examples/ExampleXORAddedNeurons.java @@ -7,7 +7,7 @@ import de.lluni.javann.layers.ActivationLayer; import de.lluni.javann.layers.FCLayer; import org.ejml.simple.SimpleMatrix; -public class ExampleXORBlankLayers { +public class ExampleXORAddedNeurons { public static void main(String[] args) { SimpleMatrix[] X_train = {new SimpleMatrix(new double[][]{{0, 0}}), new SimpleMatrix(new double[][]{{0, 1}}),