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
Hey,
I am using grape to evaluate some embedding methods on my graphs I made with Graph.from_pd().
My graphs are directed graph with weighted edges.
When I looked help(Node2VecCBOWEnsmallen), it says
| can_use_edge_weights() -> bool from builtins.type
| Returns whether the model can optionally use edge weights.
I'm sorry if I've missed any reading, but I couldn't find any arguments to state whether to use edge weights.
Does it mean when embedder.can_use_edge_weights() returns True and the graph has edge weights,
any embedder just uses edge weights automatically?
and if i want to change the graph to unweighted edges, I need to remake graph using Graph.from_pd() and delete argument edge_weight_column to make graph unweighted edge?
The text was updated successfully, but these errors were encountered:
Hey,
I am using grape to evaluate some embedding methods on my graphs I made with Graph.from_pd().
My graphs are directed graph with weighted edges.
When I looked help(Node2VecCBOWEnsmallen), it says
I'm sorry if I've missed any reading, but I couldn't find any arguments to state whether to use edge weights.
Does it mean when
embedder.can_use_edge_weights()
returnsTrue
and the graph has edge weights,any embedder just uses edge weights automatically?
and if i want to change the graph to unweighted edges, I need to remake graph using Graph.from_pd() and delete argument edge_weight_column to make graph unweighted edge?
The text was updated successfully, but these errors were encountered: