add bing to author list

This commit is contained in:
tqchen 2014-05-16 19:33:59 -07:00
parent 1150fb59a8
commit a70454e3ce
4 changed files with 6 additions and 2 deletions

View File

@ -2,9 +2,10 @@ xgboost: eXtreme Gradient Boosting
======= =======
An optimized general purpose gradient boosting (tree) library. An optimized general purpose gradient boosting (tree) library.
Authors: Contributors:
* Tianqi Chen, project creater * Tianqi Chen, project creater
* Kailong Chen, contributes regression module * Kailong Chen, contributes regression module
* Bing Xu, contributes python interface, higgs example
Turorial and Documentation: https://github.com/tqchen/xgboost/wiki Turorial and Documentation: https://github.com/tqchen/xgboost/wiki

View File

@ -1,3 +1,4 @@
# Author: Tianqi Chen, Bing Xu
# module for xgboost # module for xgboost
import ctypes import ctypes
import os import os

View File

@ -1,3 +1,4 @@
// implementations in ctypes
#include "xgboost_python.h" #include "xgboost_python.h"
#include "../regrank/xgboost_regrank.h" #include "../regrank/xgboost_regrank.h"
#include "../regrank/xgboost_regrank_data.h" #include "../regrank/xgboost_regrank_data.h"

View File

@ -1,7 +1,8 @@
#ifndef XGBOOST_PYTHON_H #ifndef XGBOOST_PYTHON_H
#define XGBOOST_PYTHON_H #define XGBOOST_PYTHON_H
/*! /*!
* \file xgboost_regrank_data.h * \file xgboost_python.h
* \author Tianqi Chen
* \brief python wrapper for xgboost, using ctypes, * \brief python wrapper for xgboost, using ctypes,
* hides everything behind functions * hides everything behind functions
* use c style interface * use c style interface