-
Notifications
You must be signed in to change notification settings - Fork 28.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SPARK-19634][SQL][ML][FOLLOW-UP] Improve interface of dataframe vect…
…orized summarizer ## What changes were proposed in this pull request? Make several improvements in dataframe vectorized summarizer. 1. Make the summarizer return `Vector` type for all metrics (except "count"). It will return "WrappedArray" type before which won't be very convenient. 2. Make `MetricsAggregate` inherit `ImplicitCastInputTypes` trait. So it can check and implicitly cast input values. 3. Add "weight" parameter for all single metric method. 4. Update doc and improve the example code in doc. 5. Simplified test cases. ## How was this patch tested? Test added and simplified. Author: WeichenXu <weichen.xu@databricks.com> Closes #19156 from WeichenXu123/improve_vec_summarizer.
- Loading branch information
1 parent
9c289a5
commit d3ae3e1
Showing
3 changed files
with
341 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
mllib/src/test/java/org/apache/spark/ml/stat/JavaSummarizerSuite.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* 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.stat; | ||
|
||
import java.io.IOException; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
import org.junit.Test; | ||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertArrayEquals; | ||
|
||
import org.apache.spark.SharedSparkSession; | ||
import org.apache.spark.sql.Row; | ||
import org.apache.spark.sql.Dataset; | ||
import static org.apache.spark.sql.functions.col; | ||
import org.apache.spark.ml.feature.LabeledPoint; | ||
import org.apache.spark.ml.linalg.Vector; | ||
import org.apache.spark.ml.linalg.Vectors; | ||
|
||
public class JavaSummarizerSuite extends SharedSparkSession { | ||
|
||
private transient Dataset<Row> dataset; | ||
|
||
@Override | ||
public void setUp() throws IOException { | ||
super.setUp(); | ||
List<LabeledPoint> points = new ArrayList<LabeledPoint>(); | ||
points.add(new LabeledPoint(0.0, Vectors.dense(1.0, 2.0))); | ||
points.add(new LabeledPoint(0.0, Vectors.dense(3.0, 4.0))); | ||
|
||
dataset = spark.createDataFrame(jsc.parallelize(points, 2), LabeledPoint.class); | ||
} | ||
|
||
@Test | ||
public void testSummarizer() { | ||
dataset.select(col("features")); | ||
Row result = dataset | ||
.select(Summarizer.metrics("mean", "max", "count").summary(col("features"))) | ||
.first().getStruct(0); | ||
Vector meanVec = result.getAs("mean"); | ||
Vector maxVec = result.getAs("max"); | ||
long count = result.getAs("count"); | ||
|
||
assertEquals(2L, count); | ||
assertArrayEquals(new double[]{2.0, 3.0}, meanVec.toArray(), 0.0); | ||
assertArrayEquals(new double[]{3.0, 4.0}, maxVec.toArray(), 0.0); | ||
} | ||
} |
Oops, something went wrong.