EshwarSR 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_r269732144
 
 

 ##########
 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:
   Okay! I shall add the new methods then. 
   So is there a naming convention followed for the method names? If so can you 
suggest me the names for the private method and for the new method which takes 
sources as Array[(VertexId, Double)]) 
   Also it would be great if you can point me to the file containing test cases 
for these.
   
   PS: What exactly do you mean by "GraphX isn't really maintained anymore"?

----------------------------------------------------------------
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]

Reply via email to