* Refactor CMake scripts. * Remove CMake CUDA wrapper. * Bump CMake version for CUDA. * Use CMake to handle Doxygen. * Split up CMakeList. * Export install target. * Use modern CMake. * Remove build.sh * Workaround for gpu_hist test. * Use cmake 3.12. * Revert machine.conf. * Move CLI test to gpu. * Small cleanup. * Support using XGBoost as submodule. * Fix windows * Fix cpp tests on Windows * Remove duplicated find_package.
13 lines
303 B
Plaintext
13 lines
303 B
Plaintext
# Originally an example in demo/regression/
|
|
booster = gbtree
|
|
objective = reg:linear
|
|
eta = 1.0
|
|
gamma = 1.0
|
|
seed = 0
|
|
min_child_weight = 0
|
|
max_depth = 3
|
|
|
|
num_round = 2
|
|
save_period = 0
|
|
data = "@PROJECT_SOURCE_DIR@/demo/data/agaricus.txt.train"
|
|
eval[test] = "@PROJECT_SOURCE_DIR@/demo/data/agaricus.txt.test" |