biz.k11i.xgboost.tree.RegTreeFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xgboost-predictor Show documentation
Show all versions of xgboost-predictor Show documentation
Pure Java implementation of XGBoost predictor for online prediction tasks
package biz.k11i.xgboost.tree;
import biz.k11i.xgboost.util.ModelReader;
import java.io.IOException;
public interface RegTreeFactory {
RegTree loadTree(ModelReader reader) throws IOException;
}