Skip to content
/ AILibs Public
forked from starlibs/AILibs

A collection of Java libraries for basic AI algorithms (JAICore) and automated software composition, in particular AutoML (softwareconfiguration)

Notifications You must be signed in to change notification settings

fischor/AILibs

 
 

Repository files navigation

Build Status

AILibs

AILibs is a collection of Java libraries related to automated decision making. It currently consists of two building blocks. It is also home of the current version of the AutoML-tool ML-Plan.

  • JAICore (Java AI Core) is a collection of projects with basic general purpose AI algorithms mainly in the area of logic reasoning, heuristic search, and machine learning
  • softwareconfiguration is a collection of projects related to automatically configuring software systems. Here we also maintain the code for our AutoML flagship ML-Plan

Using AILibs in your project

You can resolve snapshots of this projects via a maven-dependency.

Gradle

First register our departements nexus as a maven repository:

repositories {
    mavenCentral()
	  maven { url "https://nexus.cs.upb.de/repository/sfb901-snapshots/" }
}

Then, you can either import the bundeled library via:

dependencies {
	 compile group: "de.upb.isys", name: "AILibs", version:"0.0.1-SNAPSHOT"
}

Or, the different artifacts individually e.g.

dependencies {
	 compile group: "de.upb.isys", name: "jaicore-ml", version:"0.0.1-SNAPSHOT"
}

Setting up your IDE to work with AILibs

Eclipse

Navigate to the folder where you cloned this repository and run

  ./gradlew eclipse

This automatically creates the eclipse project files and configures the dependencies among the projects. Then open Eclipse and go to the import menu, e.g., in the package manager. Choose to import Existing Projects into Workspace, select the folder where you cloned the repository, and make sure to check the Search for nested projects option.

About

A collection of Java libraries for basic AI algorithms (JAICore) and automated software composition, in particular AutoML (softwareconfiguration)

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 97.3%
  • Python 2.4%
  • Other 0.3%