【发布时间】:2017-04-10 15:35:26
【问题描述】:
pyspark.ml.classification.LogisticRegression 中使用的优化技术是什么?是梯度下降还是梯度上升或其他?如果它是一种梯度算法,我该如何指定 stepSize? 我在 Logistic 回归类中没有看到任何 stepSize 参数:
class pyspark.ml.classification.LogisticRegression(self, featuresCol="features", labelCol="label", predictionCol="prediction", maxIter=100, regParam=0.0, elasticNetParam=0.0, tol=1e-6, fitIntercept=True, threshold=0.5, thresholds=None, probabilityCol="probability", rawPredictionCol="rawPrediction", standardization=True, weightCol=None, aggregationDepth=2, family="auto")
【问题讨论】:
标签: python machine-learning pyspark logistic-regression