Skip to content

Commit ded3ac6

Browse files
committed
[SPARK-5726] [MLLIB] Pass style checks.
1 parent 37d4705 commit ded3ac6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

mllib/src/main/scala/org/apache/spark/ml/feature/ElementwiseProduct.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ import org.apache.spark.sql.types.DataType
2626

2727
/**
2828
* :: AlphaComponent ::
29-
* Outputs the Hadamard product (i.e., the element-wise product) of each input vector with a provided "weight" vector. In other words, it scales each column of the dataset by a scalar multiplier.
29+
* Outputs the Hadamard product (i.e., the element-wise product) of each input vector with a
30+
* provided "weight" vector. In other words, it scales each column of the dataset by a scalar multiplier.
3031
*/
3132
@AlphaComponent
3233
class ElementwiseProduct extends UnaryTransformer[Vector, Vector, ElementwiseProduct] {

mllib/src/main/scala/org/apache/spark/mllib/feature/ElementwiseProduct.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import org.apache.spark.mllib.linalg._
2222

2323
/**
2424
* :: AlphaComponent ::
25-
* Outputs the Hadamard product (i.e., the element-wise product) of each input vector with a provided "weight" vector. In other words, it scales each column of the dataset by a scalar multiplier.
26-
*
25+
* Outputs the Hadamard product (i.e., the element-wise product) of each input vector with a provided
26+
* "weight" vector. In other words, it scales each column of the dataset by a scalar multiplier.
2727
* @param scalingVector The values used to scale the reference vector's individual components.
2828
*/
2929
@AlphaComponent

0 commit comments

Comments
 (0)