MVN

com.github.korriganed : broceliande

Maven & Gradle

Dec 08, 2016
0 stars

broceliande · This project provides a Java implementation of random forests. Random forests use training sets to build decision trees. Given an input (e.g. a person with age, gender, medical background, symptoms) the result (e.g. a disease) of which is unknown, random forests are able to predict the corresponding result.

<dependency>
    <groupId>com.github.korriganed</groupId>
    <artifactId>broceliande</artifactId>
    <version>1.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.korriganed : broceliande to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.1

All Versions

Choose a version of com.github.korriganed : broceliande to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.1
broceliande-1.1

How to add a dependency to Maven

Add the following com.github.korriganed : broceliande maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.korriganed</groupId>
    <artifactId>broceliande</artifactId>
    <version>1.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.korriganed : broceliande gradle dependency to your build.gradle file:

implementation 'com.github.korriganed:broceliande:1.1'

Gradle Kotlin DSL: Add the following com.github.korriganed : broceliande gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.korriganed:broceliande:1.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.korriganed : broceliande sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.korriganed" % "broceliande" % "1.1"

Advertisement