push python examples in

This commit is contained in:
tqchen 2014-09-03 13:15:17 -07:00
parent 41ea0bf97a
commit c1e0ff0326
2 changed files with 25 additions and 0 deletions

25
demo/READMDE.md Normal file
View File

@ -0,0 +1,25 @@
XGBoost Examples
====
This folder contains the all example codes using xgboost.
Contribution of exampls, benchmarks is more than welcomed!
If you like to share how you use xgboost to solve your problem, send a pull request:)
Start Examples by Tasks
====
* [Binary classification](binary_classification)
* [Multiclass classification](multiclass_classification)
* [Regression](regression)
* [Learning to Rank](rank)
Features Walkthrough
====
This is a list of short codes introducing different functionalities of xgboost and its wrapper.
* Basic walkthrough of wrappers. [python](guide-python/basic.py) [R](guide-R/basic.R)
* Cutomize loss function, and evaluation metric. [python](guide-python/custom_objective.py) [R](guide-R/custom_objective.R)
* Boosting from existing prediction. [python](guide-python/boost_from_prediction.py) [R](guide-R/boost_from_prediction.R)
* Predicting using first n trees. [python](guide-python/predict_first_ntree.py) [R](guide-R/predict_first_ntree.R)
* Cross validation(to come)
Benchmarks
====
* [Starter script for Kaggle Higgs Boson](kaggle-higgs)