- #27 Support DART model.
- Support an objective function:
"rank:pairwise"
- Support XGBoost4J-Spark-generated model file format.
- Introduce xgboost-predictor-spark.
- Make
Predictor
Spark-friendly (implementSerializable
interface, #11 )
- Support latest model file format.
- Improve the speed performance of prediction:
- Optimize tree retrieval performance.
- Support an objective function:
"reg:linear"
- Improve the speed performance of prediction:
- Introduce methods
Predictor#predictSingle()
for predicting single value efficiently.
- Introduce methods
- Improve the speed performance of prediction:
- Use Jafama for calculating sigmoid function faster.
- Calling
ObjFunction.useFastMathExp(true)
you can use Jafama'sFastMath.exp()
.
- #2 Add linear models (
GBLinear
).
- #1 Allow users to register their
ObjFunction
.
- Initial release.