komiya-atsushi / xgboost-predictor-java

Pure Java implementation of XGBoost predictor for online prediction tasks.
Apache License 2.0
339 stars 108 forks source link

How to create the model using this library? #4

Closed alaeddinms closed 8 years ago

alaeddinms commented 8 years ago

Hi,

How to create the prediction model? is this library for prediction with a model generated somewhere else?

Thanks,

Alaeddin

komiya-atsushi commented 8 years ago

@alaeddinms

This library only provides functions to predict, and training functions are never provided.

If you want to build a prediction model, you should use xgboost via command-line interface or some language bindings like XGBoost4J.

alaeddinms commented 8 years ago

Thanks