This commit is contained in:
tqchen 2015-04-19 13:58:46 -07:00
parent a1fdff0522
commit 0220a22ca4
3 changed files with 6 additions and 11 deletions

View File

@ -5,22 +5,14 @@ It implements machine learning algorithm under gradient boosting framework, incl
Contributors: https://github.com/dmlc/xgboost/graphs/contributors Contributors: https://github.com/dmlc/xgboost/graphs/contributors
Documentations: [Documentation of xgboost](doc/README.md)
Issues Tracker: [https://github.com/dmlc/xgboost/issues](https://github.com/dmlc/xgboost/issues?q=is%3Aissue+label%3Aquestion) Issues Tracker: [https://github.com/dmlc/xgboost/issues](https://github.com/dmlc/xgboost/issues?q=is%3Aissue+label%3Aquestion)
Please join [XGBoost User Group](https://groups.google.com/forum/#!forum/xgboost-user/) to ask questions and share your experience on xgboost. Please join [XGBoost User Group](https://groups.google.com/forum/#!forum/xgboost-user/) to ask questions and share your experience on xgboost.
Examples Code: [Learning to use xgboost by examples](demo)
Distributed Version: [Distributed XGBoost](multi-node) Distributed Version: [Distributed XGBoost](multi-node)
Notes on the Code: [Code Guide](src)
Documentation: [Documentation of xgboost](doc/README.md)
Learning about the model: [Introduction to Boosted Trees](http://homes.cs.washington.edu/~tqchen/pdf/BoostedTree.pdf)
* This slide is made by Tianqi Chen to introduce gradient boosting in a statistical view.
* It present boosted tree learning as formal functional space optimization of defined objective.
* The model presented is used by xgboost for boosted trees
What's New What's New
========== ==========

View File

@ -49,3 +49,4 @@ Benchmarks
==== ====
* [Starter script for Kaggle Higgs Boson](kaggle-higgs) * [Starter script for Kaggle Higgs Boson](kaggle-higgs)
* [Kaggle Tradeshift winning solution by daxiongshu](https://github.com/daxiongshu/kaggle-tradeshift-winning-solution) * [Kaggle Tradeshift winning solution by daxiongshu](https://github.com/daxiongshu/kaggle-tradeshift-winning-solution)

View File

@ -1,11 +1,13 @@
List of Documentations List of Documentations
==== ====
* [Parameters](parameter.md)
* [Using XGBoost in Python](python.md) * [Using XGBoost in Python](python.md)
* [Using XGBoost in R](../R-package/vignettes/xgboostPresentation.Rmd) * [Using XGBoost in R](../R-package/vignettes/xgboostPresentation.Rmd)
* [Learning to use xgboost by example](../demo) * [Learning to use xgboost by example](../demo)
* [External Memory Version](external_memory.md) * [External Memory Version](external_memory.md)
* [Text input format](input_format.md) * [Text input format](input_format.md)
* [Notes on the Code](../src)
* [Parameters](parameter.md)
* Learning about the model: [Introduction to Boosted Trees](http://homes.cs.washington.edu/~tqchen/pdf/BoostedTree.pdf)
How to get started How to get started
==== ====