aboutsummaryrefslogtreecommitdiff
path: root/examples/src/main/java/spark/mllib/JavaALS.java
blob: 8be079ad39977553e541d4de97468bfa536fbda9 (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
/*
 * 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 spark.mllib.examples;

import spark.api.java.JavaRDD;
import spark.api.java.JavaSparkContext;
import spark.api.java.function.Function;

import spark.mllib.recommendation.ALS;
import spark.mllib.recommendation.MatrixFactorizationModel;
import spark.mllib.recommendation.Rating;

import java.io.Serializable;
import java.util.Arrays;
import java.util.StringTokenizer;

import scala.Tuple2;

/**
 * Example using MLLib ALS from Java.
 */
public class  JavaALS {

  static class ParseRating extends Function<String, Rating> {
    public Rating call(String line) {
      StringTokenizer tok = new StringTokenizer(line, ",");
      Integer x = Integer.parseInt(tok.nextToken());
      Integer y = Integer.parseInt(tok.nextToken());
      Double rating = Double.parseDouble(tok.nextToken());
      return new Rating(x, y, rating);
    }
  }

  static class FeaturesToString extends Function<Tuple2<Object, double[]>, String> {
    public String call(Tuple2<Object, double[]> element) {
      return element._1().toString() + "," + Arrays.toString(element._2());
    }
  }

  public static void main(String[] args) {

    if (args.length != 5 && args.length != 6) {
      System.err.println(
          "Usage: JavaALS <master> <ratings_file> <rank> <iterations> <output_dir> [<blocks>]");
      System.exit(1);
    }

    int rank = Integer.parseInt(args[2]);
    int iterations = Integer.parseInt(args[3]);
    String outputDir = args[4];
    int blocks = -1;
    if (args.length == 6) {
      blocks = Integer.parseInt(args[5]);
    }

    JavaSparkContext sc = new JavaSparkContext(args[0], "JavaALS",
        System.getenv("SPARK_HOME"), System.getenv("SPARK_EXAMPLES_JAR"));
    JavaRDD<String> lines = sc.textFile(args[1]);

    JavaRDD<Rating> ratings = lines.map(new ParseRating());

    MatrixFactorizationModel model = ALS.train(ratings.rdd(), rank, iterations, 0.01, blocks);

    model.userFeatures().toJavaRDD().map(new FeaturesToString()).saveAsTextFile(
        outputDir + "/userFeatures");
    model.productFeatures().toJavaRDD().map(new FeaturesToString()).saveAsTextFile(
        outputDir + "/productFeatures");
    System.out.println("Final user/product features written to " + outputDir);

    System.exit(0);
  }
}