Feedzai OpenML Providers for Java
Implementations of the Feedzai OpenML API to allow support for machine learning models in Java.
Building
This is a Maven project which you can build using the following command:
mvn clean install
Modules
H2O
The openml-h2o
module contains a provider that allows to load and train models with H2O.
Pull the provider from Maven Central:
<dependency>
<groupId>com.feedzai</groupId>
<artifactId>openml-h2o</artifactId>
<!-- See project tags for latest version -->
<version>1.1.0</version>
</dependency>
DataRobot
The openml-datarobot
module contains a provider that allows to load models trained with DataRobot.
Pull this module from Maven Central:
<dependency>
<groupId>com.feedzai</groupId>
<artifactId>openml-datarobot</artifactId>
<!-- See project tags for latest version -->
<version>1.1.0</version>
</dependency>
LightGBM
The openml-lightgbm
module contains a provider that allows to load models trained with Microsoft LightGBM.
Pull this module from Maven Central:
<dependency>
<groupId>com.feedzai</groupId>
<artifactId>openml-lightgbm</artifactId>
<!-- See project tags for latest version -->
<version>1.1.0</version>
</dependency>