Skip to content

Commit 0dd8ad0

Browse files
committed
LDA based on Graphx
1 parent 6772afe commit 0dd8ad0

File tree

4 files changed

+809
-1
lines changed

4 files changed

+809
-1
lines changed

core/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@
8585
<dependency>
8686
<groupId>org.apache.commons</groupId>
8787
<artifactId>commons-math3</artifactId>
88-
<version>3.3</version>
8988
<scope>test</scope>
9089
</dependency>
9190
<dependency>

mllib/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@
4545
<artifactId>spark-streaming_${scala.binary.version}</artifactId>
4646
<version>${project.version}</version>
4747
</dependency>
48+
<dependency>
49+
<groupId>org.apache.spark</groupId>
50+
<artifactId>spark-graphx_${scala.binary.version}</artifactId>
51+
<version>${project.version}</version>
52+
</dependency>
4853
<dependency>
4954
<groupId>org.eclipse.jetty</groupId>
5055
<artifactId>jetty-server</artifactId>
@@ -71,6 +76,11 @@
7176
</exclusion>
7277
</exclusions>
7378
</dependency>
79+
<dependency>
80+
<groupId>org.apache.commons</groupId>
81+
<artifactId>commons-math3</artifactId>
82+
<scope>test</scope>
83+
</dependency>
7484
<dependency>
7585
<groupId>org.scalatest</groupId>
7686
<artifactId>scalatest_${scala.binary.version}</artifactId>

0 commit comments

Comments
 (0)