srowen commented on a change in pull request #24230: [SPARK-27295][GraphX]
Provision to provide the initial scores for source nodes while running
Personalized Page Rank
URL: https://github.com/apache/spark/pull/24230#discussion_r269733322
##########
File path: graphx/src/main/scala/org/apache/spark/graphx/lib/PageRank.scala
##########
@@ -188,7 +188,7 @@ object PageRank extends Logging {
graph: Graph[VD, ED],
numIter: Int,
resetProb: Double = 0.15,
- sources: Array[VertexId]): Graph[Vector, Double] = {
+ sources: Array[(VertexId, Double)]): Graph[Vector, Double] = {
Review comment:
Same public method name, maybe calling a "doRunParallel" method that's
private.
There is really no new development on GraphX or MLlib; I wouldn't call them
deprecated but is a reason to not add new methods to it. That said, this is
minor enough that I think it's reasonable.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]