-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Samuel Abramov
committed
Oct 11, 2023
1 parent
d5f45ec
commit bd16536
Showing
6 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package de.edux.functions.optimizer; | ||
|
||
public enum Optimizer { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package de.edux.ml.cnn; | ||
|
||
public class ConvLayer implements Layer{ | ||
} |
20 changes: 20 additions & 0 deletions
20
lib/src/main/java/de/edux/ml/cnn/ConvolutionalNeuralNetwork.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package de.edux.ml.cnn; | ||
|
||
import de.edux.api.Classifier; | ||
|
||
public class ConvolutionalNeuralNetwork implements Classifier { | ||
@Override | ||
public boolean train(double[][] features, double[][] labels) { | ||
return false; | ||
} | ||
|
||
@Override | ||
public double evaluate(double[][] testInputs, double[][] testTargets) { | ||
return 0; | ||
} | ||
|
||
@Override | ||
public double[] predict(double[] feature) { | ||
return new double[0]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package de.edux.ml.cnn; | ||
|
||
public class DenseLayer { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package de.edux.ml.cnn; | ||
|
||
public interface Layer { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package de.edux.ml.cnn; | ||
|
||
public class Tensor { | ||
} |