@@ -44,33 +44,33 @@ def mutate(
4444 G : GraphV2
4545 The graph to run the algorithm on
4646 mutate_property : str
47- The property name to store the ArticleRank score for each node
47+ Name of the node property to store the results in.
4848 damping_factor : Optional[float], default=None
49- The damping factor controls the probability of a random jump to a random node
49+ Probability of a jump to a random node.
5050 tolerance : Optional[float], default=None
51- Minimum change in scores between iterations
51+ Minimum change in scores between iterations.
5252 max_iterations : Optional[int], default=None
53- The maximum number of iterations to run
53+ Maximum number of iterations to run.
5454 scaler : Optional[Any], default=None
55- Configuration for scaling the scores
55+ Name of the scaler applied on the resulting scores.
5656 relationship_types : Optional[List[str]], default=None
57- The relationships types used to select relationships for this algorithm run
57+ Filter the graph using the given relationship types. Relationships with any of the given types will be included.
5858 node_labels : Optional[List[str]], default=None
59- The node labels used to select nodes for this algorithm run
59+ Filter the graph using the given node labels. Nodes with any of the given labels will be included.
6060 sudo : Optional[bool], default=None
61- Override memory estimation limits
61+ Disable the memory guard.
6262 log_progress : Optional[bool], default=None
63- Whether to log progress
63+ Display progress logging.
6464 username : Optional[str], default=None
6565 The username to attribute the procedure run to
6666 concurrency : Optional[Any], default=None
67- The number of concurrent threads
67+ Number of threads to use for running the algorithm.
6868 job_id : Optional[Any], default=None
69- An identifier for the job
69+ Identifier for the job.
7070 relationship_weight_property : Optional[str], default=None
71- The property name that contains weight
71+ Name of the property to be used as weights.
7272 source_nodes : Optional[Any], default=None
73- The source nodes for personalized ArticleRank
73+ List of node ids to use as starting points. Use a list of list pairs to associate each node with a bias > 0.
7474
7575 Returns
7676 -------
@@ -108,31 +108,31 @@ def stats(
108108 G : GraphV2
109109 The graph to run the algorithm on
110110 damping_factor : Optional[float], default=None
111- The damping factor controls the probability of a random jump to a random node
111+ Probability of a jump to a random node.
112112 tolerance : Optional[float], default=None
113- Minimum change in scores between iterations
113+ Minimum change in scores between iterations.
114114 max_iterations : Optional[int], default=None
115- The maximum number of iterations to run
115+ Maximum number of iterations to run.
116116 scaler : Optional[Any], default=None
117- Configuration for scaling the scores
117+ Name of the scaler applied on the resulting scores.
118118 relationship_types : Optional[List[str]], default=None
119- The relationships types used to select relationships for this algorithm run
119+ Filter the graph using the given relationship types. Relationships with any of the given types will be included.
120120 node_labels : Optional[List[str]], default=None
121- The node labels used to select nodes for this algorithm run
121+ Filter the graph using the given node labels. Nodes with any of the given labels will be included.
122122 sudo : Optional[bool], default=None
123- Override memory estimation limits
123+ Disable the memory guard.
124124 log_progress : Optional[bool], default=None
125- Whether to log progress
125+ Display progress logging.
126126 username : Optional[str], default=None
127127 The username to attribute the procedure run to
128128 concurrency : Optional[Any], default=None
129- The number of concurrent threads
129+ Number of threads to use for running the algorithm.
130130 job_id : Optional[Any], default=None
131- An identifier for the job
131+ Identifier for the job.
132132 relationship_weight_property : Optional[str], default=None
133- The property name that contains weight
133+ Name of the property to be used as weights.
134134 source_nodes : Optional[Any], default=None
135- The source nodes for personalized ArticleRank
135+ List of node ids to use as starting points. Use a list of list pairs to associate each node with a bias > 0.
136136
137137 Returns
138138 -------
@@ -232,31 +232,31 @@ def write(
232232 write_property : str
233233 The property name to write the ArticleRank score for each node
234234 damping_factor : Optional[float], default=None
235- The damping factor controls the probability of a random jump to a random node
235+ Probability of a jump to a random node.
236236 tolerance : Optional[float], default=None
237- Minimum change in scores between iterations
237+ Minimum change in scores between iterations.
238238 max_iterations : Optional[int], default=None
239- The maximum number of iterations to run
239+ Maximum number of iterations to run.
240240 scaler : Optional[Any], default=None
241- Configuration for scaling the scores
241+ Name of the scaler applied on the resulting scores.
242242 relationship_types : Optional[List[str]], default=None
243- The relationships types used to select relationships for this algorithm run
243+ Filter the graph using the given relationship types. Relationships with any of the given types will be included.
244244 node_labels : Optional[List[str]], default=None
245- The node labels used to select nodes for this algorithm run
245+ Filter the graph using the given node labels. Nodes with any of the given labels will be included.
246246 sudo : Optional[bool], default=None
247- Override memory estimation limits
247+ Disable the memory guard.
248248 log_progress : Optional[bool], default=None
249- Whether to log progress
249+ Display progress logging.
250250 username : Optional[str], default=None
251251 The username to attribute the procedure run to
252252 concurrency : Optional[Any], default=None
253- The number of concurrent threads
253+ Number of threads to use for running the algorithm.
254254 job_id : Optional[Any], default=None
255- An identifier for the job
255+ Identifier for the job.
256256 relationship_weight_property : Optional[str], default=None
257- The property name that contains weight
257+ Name of the property to be used as weights.
258258 source_nodes : Optional[Any], default=None
259- The source nodes for personalized ArticleRank
259+ List of node ids to use as starting points. Use a list of list pairs to associate each node with a bias > 0.
260260 write_concurrency : Optional[int], default=None
261261 The number of concurrent threads used for writing
262262
0 commit comments