chg file name of reg

This commit is contained in:
tqchen 2014-03-02 16:39:00 -08:00 committed by tqchen
parent 4ebdd3cdd2
commit d534c22094
3 changed files with 15 additions and 15 deletions

View File

@ -9,8 +9,8 @@
#include <cstdlib> #include <cstdlib>
#include <cstring> #include <cstring>
#include <omp.h> #include <omp.h>
#include "xgboost_regdata.h" #include "xgboost_reg_data.h"
#include "xgboost_regeval.h" #include "xgboost_reg_eval.h"
#include "../booster/xgboost_gbmbase.h" #include "../booster/xgboost_gbmbase.h"
#include "../utils/xgboost_utils.h" #include "../utils/xgboost_utils.h"
#include "../utils/xgboost_stream.h" #include "../utils/xgboost_stream.h"

View File

@ -1,8 +1,8 @@
#ifndef XGBOOST_REGDATA_H #ifndef XGBOOST_REG_DATA_H
#define XGBOOST_REGDATA_H #define XGBOOST_REG_DATA_H
/*! /*!
* \file xgboost_regdata.h * \file xgboost_reg_data.h
* \brief input data structure for regression and binary classification task. * \brief input data structure for regression and binary classification task.
* Format: * Format:
* The data should contain each data instance in each line. * The data should contain each data instance in each line.

View File

@ -1,7 +1,7 @@
#ifndef XGBOOST_REGEVAL_H #ifndef XGBOOST_REG_EVAL_H
#define XGBOOST_REGEVAL_H #define XGBOOST_REG_EVAL_H
/*! /*!
* \file xgboost_regeval.h * \file xgboost_reg_eval.h
* \brief evaluation metrics for regression and classification * \brief evaluation metrics for regression and classification
* \author Kailong Chen: chenkl198812@gmail.com, Tianqi Chen: tianqi.tchen@gmail.com * \author Kailong Chen: chenkl198812@gmail.com, Tianqi Chen: tianqi.tchen@gmail.com
*/ */