@@ -44,33 +44,33 @@ def mutate(
44
44
G : GraphV2
45
45
The graph to run the algorithm on
46
46
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.
48
48
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.
50
50
tolerance : Optional[float], default=None
51
- Minimum change in scores between iterations
51
+ Minimum change in scores between iterations.
52
52
max_iterations : Optional[int], default=None
53
- The maximum number of iterations to run
53
+ Maximum number of iterations to run.
54
54
scaler : Optional[Any], default=None
55
- Configuration for scaling the scores
55
+ Name of the scaler applied on the resulting scores.
56
56
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.
58
58
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.
60
60
sudo : Optional[bool], default=None
61
- Override memory estimation limits
61
+ Disable the memory guard.
62
62
log_progress : Optional[bool], default=None
63
- Whether to log progress
63
+ Display progress logging.
64
64
username : Optional[str], default=None
65
65
The username to attribute the procedure run to
66
66
concurrency : Optional[Any], default=None
67
- The number of concurrent threads
67
+ Number of threads to use for running the algorithm.
68
68
job_id : Optional[Any], default=None
69
- An identifier for the job
69
+ Identifier for the job.
70
70
relationship_weight_property : Optional[str], default=None
71
- The property name that contains weight
71
+ Name of the property to be used as weights.
72
72
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.
74
74
75
75
Returns
76
76
-------
@@ -108,31 +108,31 @@ def stats(
108
108
G : GraphV2
109
109
The graph to run the algorithm on
110
110
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.
112
112
tolerance : Optional[float], default=None
113
- Minimum change in scores between iterations
113
+ Minimum change in scores between iterations.
114
114
max_iterations : Optional[int], default=None
115
- The maximum number of iterations to run
115
+ Maximum number of iterations to run.
116
116
scaler : Optional[Any], default=None
117
- Configuration for scaling the scores
117
+ Name of the scaler applied on the resulting scores.
118
118
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.
120
120
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.
122
122
sudo : Optional[bool], default=None
123
- Override memory estimation limits
123
+ Disable the memory guard.
124
124
log_progress : Optional[bool], default=None
125
- Whether to log progress
125
+ Display progress logging.
126
126
username : Optional[str], default=None
127
127
The username to attribute the procedure run to
128
128
concurrency : Optional[Any], default=None
129
- The number of concurrent threads
129
+ Number of threads to use for running the algorithm.
130
130
job_id : Optional[Any], default=None
131
- An identifier for the job
131
+ Identifier for the job.
132
132
relationship_weight_property : Optional[str], default=None
133
- The property name that contains weight
133
+ Name of the property to be used as weights.
134
134
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.
136
136
137
137
Returns
138
138
-------
@@ -232,31 +232,31 @@ def write(
232
232
write_property : str
233
233
The property name to write the ArticleRank score for each node
234
234
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.
236
236
tolerance : Optional[float], default=None
237
- Minimum change in scores between iterations
237
+ Minimum change in scores between iterations.
238
238
max_iterations : Optional[int], default=None
239
- The maximum number of iterations to run
239
+ Maximum number of iterations to run.
240
240
scaler : Optional[Any], default=None
241
- Configuration for scaling the scores
241
+ Name of the scaler applied on the resulting scores.
242
242
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.
244
244
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.
246
246
sudo : Optional[bool], default=None
247
- Override memory estimation limits
247
+ Disable the memory guard.
248
248
log_progress : Optional[bool], default=None
249
- Whether to log progress
249
+ Display progress logging.
250
250
username : Optional[str], default=None
251
251
The username to attribute the procedure run to
252
252
concurrency : Optional[Any], default=None
253
- The number of concurrent threads
253
+ Number of threads to use for running the algorithm.
254
254
job_id : Optional[Any], default=None
255
- An identifier for the job
255
+ Identifier for the job.
256
256
relationship_weight_property : Optional[str], default=None
257
- The property name that contains weight
257
+ Name of the property to be used as weights.
258
258
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.
260
260
write_concurrency : Optional[int], default=None
261
261
The number of concurrent threads used for writing
262
262
0 commit comments