Skip to content

Commit

Permalink
ADD Java test suites of the KMeans API for spark.ml Pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
yu-iskw committed Jul 1, 2015
1 parent 598ed2e commit c2d6bcb
Showing 1 changed file with 65 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
/*
* 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.clustering;

import java.io.Serializable;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;

import org.apache.spark.api.java.JavaSparkContext;
import org.apache.spark.mllib.linalg.Vector;
import org.apache.spark.sql.DataFrame;
import org.apache.spark.sql.SQLContext;

public class JavaKMeansSuite implements Serializable {

private transient int k = 5;
private transient JavaSparkContext sc;
private transient DataFrame dataset;
private transient SQLContext sql;

@Before
public void setUp() {
sc = new JavaSparkContext("local", "JavaKMeansSuite");
sql = new SQLContext(sc);

dataset = KMeansSuite.generateKMeansData(sql, 1000, 3, k);
}

@After
public void tearDown() {
sc.stop();
sc = null;
}

@Test
public void fitAndTransform() {
KMeans kmeans = new KMeans().setK(k).setSeed(1);
KMeansModel model = kmeans.fit(dataset);

Vector[] centers = model.clusterCenters();
assertEquals(k, centers.length);

DataFrame transformed = model.transform(dataset);
assertArrayEquals(new String[]{"features", "prediction"}, transformed.columns());
}
}

0 comments on commit c2d6bcb

Please sign in to comment.