Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update GeneralizedLinearAlgorithm.scala
make setFeatureScaling public
  • Loading branch information
tanyinyan committed Mar 19, 2015
commit 2dc9cb886eaaf27f3bdf761b17da18692ead0906
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ abstract class GeneralizedLinearAlgorithm[M <: GeneralizedLinearModel]
/**
* Set if the algorithm should use feature scaling to improve the convergence during optimization.
*/
private[mllib] def setFeatureScaling(useFeatureScaling: Boolean): this.type = {
def setFeatureScaling(useFeatureScaling: Boolean): this.type = {
this.useFeatureScaling = useFeatureScaling
this
}
Expand Down