- Make the fix in PR backwards compatible in order to use it in H2O-3 and provide same predictions for older MOJOs and pass the compatibility test. PR
- Change the order of the floating point operation to match prediction in native xgboost version 1.3.0 and newer PR
- Add support for
reg:logistic
andrank:ndcg
oobjectives. PR
- Revert renaming of getWeight. PR
- Expose
RegTreeNode
stats. PR
- Fix loading an empty gblinear booster PR
- #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.