Skip to content

Commit b7e28fa

Browse files
committed
initial version of LPA
A straightforward implementation of LPA algorithm for detecting graph communities using the Pregel framework. Amongst the growing literature on community detection algorithms in networks, LPA is perhaps the most elementary, and despite its flaws it remains a nice and simple approach. Author: Ankur Dave <[email protected]> Author: haroldsultan <[email protected]> Author: Harold Sultan <[email protected]> Closes apache#905 from haroldsultan/master and squashes the following commits: 327aee0 [haroldsultan] Merge pull request #2 from ankurdave/label-propagation 227a4d0 [Ankur Dave] Untabify 0ac574c [haroldsultan] Merge pull request #1 from ankurdave/label-propagation 0e24303 [Ankur Dave] Add LabelPropagationSuite 84aa061 [Ankur Dave] LabelPropagation: Fix compile errors and style; rename from LPA 9830342 [Harold Sultan] initial version of LPA
1 parent 8f7141f commit b7e28fa

File tree

2 files changed

+111
-0
lines changed

2 files changed

+111
-0
lines changed
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
package org.apache.spark.graphx.lib
19+
20+
import scala.reflect.ClassTag
21+
import org.apache.spark.graphx._
22+
23+
/** Label Propagation algorithm. */
24+
object LabelPropagation {
25+
/**
26+
* Run static Label Propagation for detecting communities in networks.
27+
*
28+
* Each node in the network is initially assigned to its own community. At every superstep, nodes
29+
* send their community affiliation to all neighbors and update their state to the mode community
30+
* affiliation of incoming messages.
31+
*
32+
* LPA is a standard community detection algorithm for graphs. It is very inexpensive
33+
* computationally, although (1) convergence is not guaranteed and (2) one can end up with
34+
* trivial solutions (all nodes are identified into a single community).
35+
*
36+
* @tparam ED the edge attribute type (not used in the computation)
37+
*
38+
* @param graph the graph for which to compute the community affiliation
39+
* @param maxSteps the number of supersteps of LPA to be performed. Because this is a static
40+
* implementation, the algorithm will run for exactly this many supersteps.
41+
*
42+
* @return a graph with vertex attributes containing the label of community affiliation
43+
*/
44+
def run[ED: ClassTag](graph: Graph[_, ED], maxSteps: Int): Graph[VertexId, ED] = {
45+
val lpaGraph = graph.mapVertices { case (vid, _) => vid }
46+
def sendMessage(e: EdgeTriplet[VertexId, ED]) = {
47+
Iterator((e.srcId, Map(e.dstAttr -> 1L)), (e.dstId, Map(e.srcAttr -> 1L)))
48+
}
49+
def mergeMessage(count1: Map[VertexId, Long], count2: Map[VertexId, Long])
50+
: Map[VertexId, Long] = {
51+
(count1.keySet ++ count2.keySet).map { i =>
52+
val count1Val = count1.getOrElse(i, 0L)
53+
val count2Val = count2.getOrElse(i, 0L)
54+
i -> (count1Val + count2Val)
55+
}.toMap
56+
}
57+
def vertexProgram(vid: VertexId, attr: Long, message: Map[VertexId, Long]) = {
58+
if (message.isEmpty) attr else message.maxBy(_._2)._1
59+
}
60+
val initialMessage = Map[VertexId, Long]()
61+
Pregel(lpaGraph, initialMessage, maxIterations = maxSteps)(
62+
vprog = vertexProgram,
63+
sendMsg = sendMessage,
64+
mergeMsg = mergeMessage)
65+
}
66+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
package org.apache.spark.graphx.lib
19+
20+
import org.scalatest.FunSuite
21+
22+
import org.apache.spark.graphx._
23+
24+
class LabelPropagationSuite extends FunSuite with LocalSparkContext {
25+
test("Label Propagation") {
26+
withSpark { sc =>
27+
// Construct a graph with two cliques connected by a single edge
28+
val n = 5
29+
val clique1 = for (u <- 0L until n; v <- 0L until n) yield Edge(u, v, 1)
30+
val clique2 = for (u <- 0L to n; v <- 0L to n) yield Edge(u + n, v + n, 1)
31+
val twoCliques = sc.parallelize(clique1 ++ clique2 :+ Edge(0L, n, 1))
32+
val graph = Graph.fromEdges(twoCliques, 1)
33+
// Run label propagation
34+
val labels = LabelPropagation.run(graph, n * 4).cache()
35+
36+
// All vertices within a clique should have the same label
37+
val clique1Labels = labels.vertices.filter(_._1 < n).map(_._2).collect.toArray
38+
assert(clique1Labels.forall(_ == clique1Labels(0)))
39+
val clique2Labels = labels.vertices.filter(_._1 >= n).map(_._2).collect.toArray
40+
assert(clique2Labels.forall(_ == clique2Labels(0)))
41+
// The two cliques should have different labels
42+
assert(clique1Labels(0) != clique2Labels(0))
43+
}
44+
}
45+
}

0 commit comments

Comments
 (0)