You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does NebulaGraph-Algorithm not support custom edge weights for graph calculations?
There is a column of _rank in the data currently read from nebula-graphx. I want to use _rank as my weight data, but I found that
The initialization of pagerank in the org.apache.spark.graphx.lib.PageRank source code does not use this _rank value at all
Should I need to pass the _rank field to customize the weight of the edge?
The text was updated successfully, but these errors were encountered:
Dear @godlovefei , the _rank refer to the NebulaGraph rank for edge, not a normal property named rank.
@Nicole00 is there any way to leverage weight other than the _rank of the edge for now?
No other way has been found yet, because the weight of the edge is initialized in org.apache.spark.graphx.lib.PageRank, but I saw that _rank can be used as an edge in the nebula-algorithm algorithm package weights are used. However, as far as the current situation is concerned, this approach does not seem to work.
Does NebulaGraph-Algorithm not support custom edge weights for graph calculations?
There is a column of
_rank
in the data currently read from nebula-graphx. I want to use_rank
as my weight data, but I found thatThe initialization of pagerank in the org.apache.spark.graphx.lib.PageRank source code does not use this
_rank
value at allShould I need to pass the
_rank
field to customize the weight of the edge?The text was updated successfully, but these errors were encountered: