Installation

This page shows how to add Brain4J to your project.

Prerequisites

  1. Basic machine learning knowledge

  2. Java 21 or later

  3. Gradle or Maven

Using Gradle

Add this block to your build.gradle

repositories {
    mavenCentral()
    maven { url "https://repo.brain4j.org/releases" }
}

dependencies {
    implementation "org.brain4j:brain4j:3.0.0"
}

Using Maven

Add this block to your pom.xml

That's it. Proceed to the next lesson and learn the basics.

Last updated