forked from dmlc/xgboost
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
545 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 86 additions & 0 deletions
86
jvm-packages/xgboost4j-spark/src/test/scala/ml/dmlc/xgboost4j/scala/spark/CustomObj.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/* | ||
Copyright (c) 2021 by Contributors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package ml.dmlc.xgboost4j.scala.spark | ||
|
||
import scala.collection.mutable.ListBuffer | ||
|
||
import org.apache.commons.logging.LogFactory | ||
|
||
import ml.dmlc.xgboost4j.java.XGBoostError | ||
import ml.dmlc.xgboost4j.scala.{DMatrix, ObjectiveTrait} | ||
|
||
|
||
/** | ||
* loglikelihood loss obj function | ||
*/ | ||
class CustomObj(val customParameter: Int = 0) extends ObjectiveTrait { | ||
|
||
val logger = LogFactory.getLog(classOf[CustomObj]) | ||
|
||
/** | ||
* user define objective function, return gradient and second order gradient | ||
* | ||
* @param predicts untransformed margin predicts | ||
* @param dtrain training data | ||
* @return List with two float array, correspond to first order grad and second order grad | ||
*/ | ||
override def getGradient(predicts: Array[Array[Float]], dtrain: DMatrix) | ||
: List[Array[Float]] = { | ||
val nrow = predicts.length | ||
val gradients = new ListBuffer[Array[Float]] | ||
var labels: Array[Float] = null | ||
try { | ||
labels = dtrain.getLabel | ||
} catch { | ||
case e: XGBoostError => | ||
logger.error(e) | ||
throw e | ||
case e: Throwable => throw e | ||
} | ||
val grad = new Array[Float](nrow) | ||
val hess = new Array[Float](nrow) | ||
val transPredicts = transform(predicts) | ||
|
||
for (i <- 0 until nrow) { | ||
val predict = transPredicts(i)(0) | ||
grad(i) = predict - labels(i) | ||
hess(i) = predict * (1 - predict) | ||
} | ||
gradients += grad | ||
gradients += hess | ||
gradients.toList | ||
} | ||
|
||
/** | ||
* simple sigmoid func | ||
* | ||
* @param input | ||
* @return Note: this func is not concern about numerical stability, only used as example | ||
*/ | ||
def sigmoid(input: Float): Float = { | ||
(1 / (1 + Math.exp(-input))).toFloat | ||
} | ||
|
||
def transform(predicts: Array[Array[Float]]): Array[Array[Float]] = { | ||
val nrow = predicts.length | ||
val transPredicts = Array.fill[Float](nrow, 1)(0) | ||
for (i <- 0 until nrow) { | ||
transPredicts(i)(0) = sigmoid(predicts(i)(0)) | ||
} | ||
transPredicts | ||
} | ||
} |
66 changes: 66 additions & 0 deletions
66
jvm-packages/xgboost4j-spark/src/test/scala/ml/dmlc/xgboost4j/scala/spark/EvalError.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/* | ||
Copyright (c) 2014 by Contributors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package ml.dmlc.xgboost4j.scala.spark | ||
|
||
import org.apache.commons.logging.LogFactory | ||
|
||
import ml.dmlc.xgboost4j.java.XGBoostError | ||
import ml.dmlc.xgboost4j.scala.{DMatrix, EvalTrait} | ||
|
||
class EvalError extends EvalTrait { | ||
|
||
val logger = LogFactory.getLog(classOf[EvalError]) | ||
|
||
private[xgboost4j] var evalMetric: String = "custom_error" | ||
|
||
/** | ||
* get evaluate metric | ||
* | ||
* @return evalMetric | ||
*/ | ||
override def getMetric: String = evalMetric | ||
|
||
/** | ||
* evaluate with predicts and data | ||
* | ||
* @param predicts predictions as array | ||
* @param dmat data matrix to evaluate | ||
* @return result of the metric | ||
*/ | ||
override def eval(predicts: Array[Array[Float]], dmat: DMatrix): Float = { | ||
var error: Float = 0f | ||
var labels: Array[Float] = null | ||
try { | ||
labels = dmat.getLabel | ||
} catch { | ||
case ex: XGBoostError => | ||
logger.error(ex) | ||
return -1f | ||
} | ||
require(predicts.length == labels.length, s"predicts length ${predicts.length} has to be" + | ||
s" equal with label length ${labels.length}") | ||
val nrow: Int = predicts.length | ||
for (i <- 0 until nrow) { | ||
if (labels(i) == 0.0 && predicts(i)(0) > 0) { | ||
error += 1 | ||
} else if (labels(i) == 1.0 && predicts(i)(0) <= 0) { | ||
error += 1 | ||
} | ||
} | ||
error / labels.length | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.