aboutsummaryrefslogtreecommitdiff
path: root/mllib/src/main/scala/org/apache/spark/ml/tuning/CrossValidator.scala
blob: 5d51c513466652e281aac41c886577bfc8017b5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.spark.ml.tuning

import com.github.fommil.netlib.F2jBLAS

import org.apache.spark.Logging
import org.apache.spark.annotation.AlphaComponent
import org.apache.spark.ml._
import org.apache.spark.ml.param.{IntParam, Param, ParamMap, Params}
import org.apache.spark.mllib.util.MLUtils
import org.apache.spark.sql.DataFrame
import org.apache.spark.sql.types.StructType

/**
 * Params for [[CrossValidator]] and [[CrossValidatorModel]].
 */
private[ml] trait CrossValidatorParams extends Params {
  /** param for the estimator to be cross-validated */
  val estimator: Param[Estimator[_]] = new Param(this, "estimator", "estimator for selection")
  def getEstimator: Estimator[_] = get(estimator)

  /** param for estimator param maps */
  val estimatorParamMaps: Param[Array[ParamMap]] =
    new Param(this, "estimatorParamMaps", "param maps for the estimator")
  def getEstimatorParamMaps: Array[ParamMap] = get(estimatorParamMaps)

  /** param for the evaluator for selection */
  val evaluator: Param[Evaluator] = new Param(this, "evaluator", "evaluator for selection")
  def getEvaluator: Evaluator = get(evaluator)

  /** param for number of folds for cross validation */
  val numFolds: IntParam =
    new IntParam(this, "numFolds", "number of folds for cross validation", Some(3))
  def getNumFolds: Int = get(numFolds)
}

/**
 * :: AlphaComponent ::
 * K-fold cross validation.
 */
@AlphaComponent
class CrossValidator extends Estimator[CrossValidatorModel] with CrossValidatorParams with Logging {

  private val f2jBLAS = new F2jBLAS

  def setEstimator(value: Estimator[_]): this.type = set(estimator, value)
  def setEstimatorParamMaps(value: Array[ParamMap]): this.type = set(estimatorParamMaps, value)
  def setEvaluator(value: Evaluator): this.type = set(evaluator, value)
  def setNumFolds(value: Int): this.type = set(numFolds, value)

  override def fit(dataset: DataFrame, paramMap: ParamMap): CrossValidatorModel = {
    val map = this.paramMap ++ paramMap
    val schema = dataset.schema
    transformSchema(dataset.schema, paramMap, logging = true)
    val sqlCtx = dataset.sqlContext
    val est = map(estimator)
    val eval = map(evaluator)
    val epm = map(estimatorParamMaps)
    val numModels = epm.size
    val metrics = new Array[Double](epm.size)
    val splits = MLUtils.kFold(dataset.rdd, map(numFolds), 0)
    splits.zipWithIndex.foreach { case ((training, validation), splitIndex) =>
      val trainingDataset = sqlCtx.applySchema(training, schema).cache()
      val validationDataset = sqlCtx.applySchema(validation, schema).cache()
      // multi-model training
      logDebug(s"Train split $splitIndex with multiple sets of parameters.")
      val models = est.fit(trainingDataset, epm).asInstanceOf[Seq[Model[_]]]
      var i = 0
      while (i < numModels) {
        val metric = eval.evaluate(models(i).transform(validationDataset, epm(i)), map)
        logDebug(s"Got metric $metric for model trained with ${epm(i)}.")
        metrics(i) += metric
        i += 1
      }
    }
    f2jBLAS.dscal(numModels, 1.0 / map(numFolds), metrics, 1)
    logInfo(s"Average cross-validation metrics: ${metrics.toSeq}")
    val (bestMetric, bestIndex) = metrics.zipWithIndex.maxBy(_._1)
    logInfo(s"Best set of parameters:\n${epm(bestIndex)}")
    logInfo(s"Best cross-validation metric: $bestMetric.")
    val bestModel = est.fit(dataset, epm(bestIndex)).asInstanceOf[Model[_]]
    val cvModel = new CrossValidatorModel(this, map, bestModel)
    Params.inheritValues(map, this, cvModel)
    cvModel
  }

  private[ml] override def transformSchema(schema: StructType, paramMap: ParamMap): StructType = {
    val map = this.paramMap ++ paramMap
    map(estimator).transformSchema(schema, paramMap)
  }
}

/**
 * :: AlphaComponent ::
 * Model from k-fold cross validation.
 */
@AlphaComponent
class CrossValidatorModel private[ml] (
    override val parent: CrossValidator,
    override val fittingParamMap: ParamMap,
    val bestModel: Model[_])
  extends Model[CrossValidatorModel] with CrossValidatorParams {

  override def transform(dataset: DataFrame, paramMap: ParamMap): DataFrame = {
    bestModel.transform(dataset, paramMap)
  }

  private[ml] override def transformSchema(schema: StructType, paramMap: ParamMap): StructType = {
    bestModel.transformSchema(schema, paramMap)
  }
}