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
Copy file name to clipboardExpand all lines: doc/asciidoc/algorithms/beta/randomWalk/beta-random-walk.adoc
+11-5Lines changed: 11 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
-
[[alpha-algorithms-random-walk]]
2
-
[.alpha]
1
+
[[beta-algorithms-random-walk]]
2
+
[.beta]
3
3
= Random Walk
4
4
5
5
[abstract]
@@ -27,6 +27,12 @@ A relationship property value greater than 1 will increase the likelihood of a r
27
27
[NOTE]
28
28
To obtain a random walk where the transition probability is independent of the previously visited nodes both the `returnFactor` and the `inOutFactor` can be set to 1.0.
29
29
30
+
[NOTE]
31
+
====
32
+
Running this algorithm requires sufficient memory availability.
33
+
Before running this algorithm, we recommend that you read <<memory-estimation>>.
34
+
====
35
+
30
36
[[algorithms-random-walk-syntax]]
31
37
== Syntax
32
38
@@ -39,7 +45,7 @@ To obtain a random walk where the transition probability is independent of the p
39
45
.Run RandomWalk in stream mode on a named graph.
40
46
[source, cypher, role=noplay]
41
47
----
42
-
CALL gds.alpha.randomWalk.stream(
48
+
CALL gds.beta.randomWalk.stream(
43
49
graphName: String,
44
50
configuration: Map
45
51
) YIELD
@@ -111,7 +117,7 @@ CALL gds.graph.create(
111
117
.Run the RandomWalk algorithm on `myGraph`
112
118
[source, cypher, role=noplay]
113
119
----
114
-
CALL gds.alpha.randomWalk.stream(
120
+
CALL gds.beta.randomWalk.stream(
115
121
'myGraph',
116
122
{
117
123
walkLength: 3,
@@ -147,7 +153,7 @@ RETURN nodeIds, [node IN nodes(path) | node.name ] AS pages
0 commit comments