如何使用CrossValidator在不同模型之间进行选择 [英] How to use CrossValidator to choose between different models

查看:165
本文介绍了如何使用CrossValidator在不同模型之间进行选择的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道我可以使用 CrossValidator 来调整单个模型.但是,建议使用哪种方法相互评估不同的模型?例如,假设我想评估 LogisticRegression 分类器与

I know that I can use a CrossValidator to tune a single model. But what is the suggested approach for evaluating different models against each other? For example, say that I wanted to evaluate a LogisticRegression classifier against a LinearSVC classifier using CrossValidator.

推荐答案

对API有所了解之后,我通过实现自定义

After familiarizing myself a bit with the API, I solved this problem by implementing a custom Estimator that wraps two or more estimators it can delegate to, where the selected estimator is controlled by a single Param[Int]. Here is the actual code:

import org.apache.spark.ml.Estimator
import org.apache.spark.ml.Model
import org.apache.spark.ml.param.Param
import org.apache.spark.ml.param.ParamMap
import org.apache.spark.ml.param.Params
import org.apache.spark.ml.util.Identifiable
import org.apache.spark.sql.DataFrame
import org.apache.spark.sql.Dataset
import org.apache.spark.sql.types.StructType

trait DelegatingEstimatorModelParams extends Params {
  final val selectedEstimator = new Param[Int](this, "selectedEstimator", "The selected estimator")
}

class DelegatingEstimator private (override val uid: String, delegates: Array[Estimator[_]]) extends Estimator[DelegatingEstimatorModel] with DelegatingEstimatorModelParams {
  private def this(estimators: Array[Estimator[_]]) = this(Identifiable.randomUID("delegating-estimator"), estimators)

  def this(estimator1: Estimator[_], estimator2: Estimator[_], estimators: Estimator[_]*) = {
    this((Seq(estimator1, estimator2) ++ estimators).toArray)
  }

  setDefault(selectedEstimator -> 0)

  override def fit(dataset: Dataset[_]): DelegatingEstimatorModel = {
    val estimator = delegates(getOrDefault(selectedEstimator))
    val model = estimator.fit(dataset).asInstanceOf[Model[_]]
    new DelegatingEstimatorModel(uid, model)
  }

  override def copy(extra: ParamMap): Estimator[DelegatingEstimatorModel] = {
    val that = new DelegatingEstimator(uid, delegates)
    copyValues(that, extra)
  }

  override def transformSchema(schema: StructType): StructType = {
    // All delegates are assumed to perform the same schema transformation,
    // so we can simply select the first one:
    delegates(0).transformSchema(schema)
  }
}

class DelegatingEstimatorModel(override val uid: String, val delegate: Model[_]) extends Model[DelegatingEstimatorModel] with DelegatingEstimatorModelParams {
  def copy(extra: ParamMap): DelegatingEstimatorModel = new DelegatingEstimatorModel(uid, delegate.copy(extra).asInstanceOf[Model[_]])

  def transform(dataset: Dataset[_]): DataFrame = delegate.transform(dataset)

  def transformSchema(schema: StructType): StructType = delegate.transformSchema(schema)
}

该评估" rel = "nofollow noreferrer"> LinearSVC 上面的类可以像这样使用:

The evaluate a LogistcRegression against a LinearSVC the classes from above can be employed like this:

val logRegression = new LogisticRegression()
  .setFeaturesCol(columnNames.features)
  .setPredictionCol(columnNames.prediction)
  .setRawPredictionCol(columnNames.rawPrediciton)
  .setLabelCol(columnNames.label)

val svmEstimator = new LinearSVC()
  .setFeaturesCol(columnNames.features)
  .setPredictionCol(columnNames.prediction)
  .setRawPredictionCol(columnNames.rawPrediciton)
  .setLabelCol(columnNames.label)

val delegatingEstimator = new DelegatingEstimator(logRegression, svmEstimator)

val paramGrid = new ParamGridBuilder()
  .addGrid(delegatingEstimator.selectedEstimator, Array(0, 1))
  .build()

val model = crossValidator.fit(data)

val bestModel = model.bestModel.asInstanceOf[DelegatingEstimatorModel].delegate

这篇关于如何使用CrossValidator在不同模型之间进行选择的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆