From b20f62309b8ab693799816bcbcbf242ce3240ffa Mon Sep 17 00:00:00 2001 From: lluni Date: Sat, 28 May 2022 02:28:49 +0200 Subject: [PATCH] Changed file name because BlankLayer has no real function yet --- .../{ExampleXORBlankLayers.java => ExampleXORAddedNeurons.java} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename src/main/java/de/lluni/javann/examples/{ExampleXORBlankLayers.java => ExampleXORAddedNeurons.java} (97%) 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}}),