This repo intends to implement Machine Learning algorithms with Java and https://github.com/deeplearning4j/nd4j purely for understanding
You can check for examples in this package: src/main/java/org/rsultan/example
- JDK16+
Clone the repo and add the dependency according to your version
$ git fetch --all --tags
$ git checkout tags/<latest-release> -b <your-branch>
$ ./mvnw clean install
And then add the corresponding dependency
<dependency>
<groupId>org.rsultan</groupId>
<artifactId>java-ml</artifactId>
<version>[latest-version]</version>
</dependency>
Once your are good with this, you can go read the wiki
You can also check the examples in the java-ml-example
module.
Good luck !