aboutsummaryrefslogtreecommitdiff
path: root/examples/src/main/java/org/apache/spark/examples/ml/JavaInteractionExample.java
blob: 4213c05703cc61d8f9d22ae0c4312c0e794718a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
 * 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.examples.ml;

import org.apache.spark.ml.feature.Interaction;
import org.apache.spark.ml.feature.VectorAssembler;
import org.apache.spark.ml.linalg.Vectors;
import org.apache.spark.sql.*;
import org.apache.spark.sql.types.DataTypes;
import org.apache.spark.sql.types.Metadata;
import org.apache.spark.sql.types.StructField;
import org.apache.spark.sql.types.StructType;

import java.util.Arrays;
import java.util.List;

// $example on$
// $example off$

public class JavaInteractionExample {
  public static void main(String[] args) {
    SparkSession spark = SparkSession
      .builder()
      .appName("JavaInteractionExample")
      .getOrCreate();

    // $example on$
    List<Row> data = Arrays.asList(
      RowFactory.create(1, 1, 2, 3, 8, 4, 5),
      RowFactory.create(2, 4, 3, 8, 7, 9, 8),
      RowFactory.create(3, 6, 1, 9, 2, 3, 6),
      RowFactory.create(4, 10, 8, 6, 9, 4, 5),
      RowFactory.create(5, 9, 2, 7, 10, 7, 3),
      RowFactory.create(6, 1, 1, 4, 2, 8, 4)
    );
    
    StructType schema = new StructType(new StructField[]{
      new StructField("id1", DataTypes.IntegerType, false, Metadata.empty()),
      new StructField("id2", DataTypes.IntegerType, false, Metadata.empty()),
      new StructField("id3", DataTypes.IntegerType, false, Metadata.empty()),
      new StructField("id4", DataTypes.IntegerType, false, Metadata.empty()),
      new StructField("id5", DataTypes.IntegerType, false, Metadata.empty()),
      new StructField("id6", DataTypes.IntegerType, false, Metadata.empty()),
      new StructField("id7", DataTypes.IntegerType, false, Metadata.empty())
    });

    Dataset<Row> df = spark.createDataFrame(data, schema);

    VectorAssembler assembler1 = new VectorAssembler()
            .setInputCols(new String[]{"id2", "id3", "id4"})
            .setOutputCol("vec1");

    Dataset<Row> assembled1 = assembler1.transform(df);

    VectorAssembler assembler2 = new VectorAssembler()
            .setInputCols(new String[]{"id5", "id6", "id7"})
            .setOutputCol("vec2");

    Dataset<Row> assembled2 = assembler2.transform(assembled1).select("id1", "vec1", "vec2");

    Interaction interaction = new Interaction()
            .setInputCols(new String[]{"id1","vec1","vec2"})
            .setOutputCol("interactedCol");

    Dataset<Row> interacted = interaction.transform(assembled2);

    interacted.show(false);
    // $example off$

    spark.stop();
  }
}