xgboost-adv-workshop-LA icon indicating copy to clipboard operation
xgboost-adv-workshop-LA copied to clipboard

Advanced workshop on XGBoost with Tianqi Chen in Santa Monica, June 2, 2016

Results 14 xgboost-adv-workshop-LA issues
Sort by recently updated
recently updated
newest added

Weird (uncalibrated?) distribution of scores (though it does not matter for AUC): https://github.com/szilard/xgboost-adv-workshop-LA/blob/master/score_distrib/distrib.R

I usually do a grid search of the following parameter set: param_grid = { "learning_rate" : [ 0.1, 0.05, 0.01], "n_estimators" : [ 100, 500, 1000], "max_depth" : [ 4,...

Current version of xgb is pretty mature and can be used widely in different scenarios. What is the future plan of xgboost?

I'm working on a generalization of PCA to high-dimensional large, dense data sets (e.g. latitude, longitude, values -- and ideally time), where all of the cross-relationships are important. Do you...

It seems to me that the train method and the predict method expects the train and test sets to have the same ordering of the columns, am I correct? If...

The implementation of Random Forest through Xgboost is not truly Random Forest as defined by Breiman, am I correct? In the Xgboost case the features seems to be sampled at...