Skip to content
Snippets Groups Projects
Unverified Commit cff7a70b authored by Zheng RuiFeng's avatar Zheng RuiFeng Committed by DB Tsai
Browse files

[SPARK-11496][GRAPHX][FOLLOWUP] Add param checking for runParallelPersonalizedPageRank


## What changes were proposed in this pull request?
add the param checking to keep in line with other algos

## How was this patch tested?
existing tests

Author: Zheng RuiFeng <ruifengz@foxmail.com>

Closes #15876 from zhengruifeng/param_check_runParallelPersonalizedPageRank.

(cherry picked from commit 75934457)
Signed-off-by: default avatarDB Tsai <dbtsai@dbtsai.com>
parent db691f05
No related branches found
No related tags found
No related merge requests found
......@@ -185,6 +185,13 @@ object PageRank extends Logging {
def runParallelPersonalizedPageRank[VD: ClassTag, ED: ClassTag](graph: Graph[VD, ED],
numIter: Int, resetProb: Double = 0.15,
sources: Array[VertexId]): Graph[Vector, Double] = {
require(numIter > 0, s"Number of iterations must be greater than 0," +
s" but got ${numIter}")
require(resetProb >= 0 && resetProb <= 1, s"Random reset probability must belong" +
s" to [0, 1], but got ${resetProb}")
require(sources.nonEmpty, s"The list of sources must be non-empty," +
s" but got ${sources.mkString("[", ",", "]")}")
// TODO if one sources vertex id is outside of the int range
// we won't be able to store its activations in a sparse vector
val zero = Vectors.sparse(sources.size, List()).asBreeze
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment