Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 850 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 850 Bytes

java-ml

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

Requirements

  • JDK16+

Getting started

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 !