Fix a small typo in GeneralParams class. Change customEval parameter name from "custom_obj" to "custom_eval". (#1741)

This commit is contained in:
joandre 2016-11-06 18:44:49 +01:00 committed by Nan Zhu
parent 2ad0948444
commit 91b75f9b41

View File

@ -61,7 +61,7 @@ trait GeneralParams extends Params {
/** /**
* customized evaluation function provided by user. default: null * customized evaluation function provided by user. default: null
*/ */
val customEval = new Param[EvalTrait](this, "custom_obj", "customized evaluation function " + val customEval = new Param[EvalTrait](this, "custom_eval", "customized evaluation function " +
"provided by user") "provided by user")
/** /**