-
Notifications
You must be signed in to change notification settings - Fork 28.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is the LDA user guide from jkbradley with Java and Scala code example. Author: Xiangrui Meng <meng@databricks.com> Author: Joseph K. Bradley <joseph@databricks.com> Closes #4465 from mengxr/lda-guide and squashes the following commits: 6dcb7d1 [Xiangrui Meng] update java example in the user guide 76169ff [Xiangrui Meng] update java example 36c3ae2 [Xiangrui Meng] Merge remote-tracking branch 'apache/master' into lda-guide c2a1efe [Joseph K. Bradley] Added LDA programming guide, plus Java example (which is in the guide and probably should be removed).
- Loading branch information
Showing
3 changed files
with
215 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
1 2 6 0 2 3 1 1 0 0 3 | ||
1 3 0 1 3 0 0 2 0 0 1 | ||
1 4 1 0 0 4 9 0 1 2 0 | ||
2 1 0 3 0 0 5 0 2 3 9 | ||
3 1 1 9 3 0 2 0 0 1 3 | ||
4 2 0 3 4 5 1 1 1 4 0 | ||
2 1 0 3 0 0 5 0 2 2 9 | ||
1 1 1 9 2 1 2 0 0 1 3 | ||
4 4 0 3 4 2 1 3 0 0 0 | ||
2 8 2 0 3 0 2 0 2 7 2 | ||
1 1 1 9 0 2 2 0 0 3 3 | ||
4 1 0 0 4 5 1 3 0 1 0 |
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
75 changes: 75 additions & 0 deletions
75
examples/src/main/java/org/apache/spark/examples/mllib/JavaLDAExample.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,75 @@ | ||
/* | ||
* 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.mllib; | ||
|
||
import scala.Tuple2; | ||
|
||
import org.apache.spark.api.java.*; | ||
import org.apache.spark.api.java.function.Function; | ||
import org.apache.spark.mllib.clustering.DistributedLDAModel; | ||
import org.apache.spark.mllib.clustering.LDA; | ||
import org.apache.spark.mllib.linalg.Matrix; | ||
import org.apache.spark.mllib.linalg.Vector; | ||
import org.apache.spark.mllib.linalg.Vectors; | ||
import org.apache.spark.SparkConf; | ||
|
||
public class JavaLDAExample { | ||
public static void main(String[] args) { | ||
SparkConf conf = new SparkConf().setAppName("LDA Example"); | ||
JavaSparkContext sc = new JavaSparkContext(conf); | ||
|
||
// Load and parse the data | ||
String path = "data/mllib/sample_lda_data.txt"; | ||
JavaRDD<String> data = sc.textFile(path); | ||
JavaRDD<Vector> parsedData = data.map( | ||
new Function<String, Vector>() { | ||
public Vector call(String s) { | ||
String[] sarray = s.trim().split(" "); | ||
double[] values = new double[sarray.length]; | ||
for (int i = 0; i < sarray.length; i++) | ||
values[i] = Double.parseDouble(sarray[i]); | ||
return Vectors.dense(values); | ||
} | ||
} | ||
); | ||
// Index documents with unique IDs | ||
JavaPairRDD<Long, Vector> corpus = JavaPairRDD.fromJavaRDD(parsedData.zipWithIndex().map( | ||
new Function<Tuple2<Vector, Long>, Tuple2<Long, Vector>>() { | ||
public Tuple2<Long, Vector> call(Tuple2<Vector, Long> doc_id) { | ||
return doc_id.swap(); | ||
} | ||
} | ||
)); | ||
corpus.cache(); | ||
|
||
// Cluster the documents into three topics using LDA | ||
DistributedLDAModel ldaModel = new LDA().setK(3).run(corpus); | ||
|
||
// Output topics. Each is a distribution over words (matching word count vectors) | ||
System.out.println("Learned topics (as distributions over vocab of " + ldaModel.vocabSize() | ||
+ " words):"); | ||
Matrix topics = ldaModel.topicsMatrix(); | ||
for (int topic = 0; topic < 3; topic++) { | ||
System.out.print("Topic " + topic + ":"); | ||
for (int word = 0; word < ldaModel.vocabSize(); word++) { | ||
System.out.print(" " + topics.apply(word, topic)); | ||
} | ||
System.out.println(); | ||
} | ||
} | ||
} |
I think, we need to cast it to a DistributedLDAModel.