diff --git a/docs-2.0/graph-computing/algorithm-description.md b/docs-2.0/graph-computing/algorithm-description.md index 984d9b298eb..7a580484f38 100644 --- a/docs-2.0/graph-computing/algorithm-description.md +++ b/docs-2.0/graph-computing/algorithm-description.md @@ -342,35 +342,6 @@ Parameter descriptions are as follows: |`ROOT`|Determined by `vid_type`| The VID of the source vertex.| |`VISITED`|int| Outputs the number of the vertex accessed by `ROOT`.| - - ## Community discovery ### LPA @@ -559,6 +530,49 @@ Parameter descriptions are as follows: |`VID2`|The same with `VID`| Outputs the ID of the vertex B that forms the triangle.| |`VID3`|The same with `VID`| Outputs the ID of the vertex C that forms the triangle.| + +### Node2Vec + +The Node2Vec algorithm proposed a more reasonable graph feature learning method based on DeepWalk, and proposed a semi-supervised algorithm for scalable feature learning in networks. SGD was used to optimize a custom graph-based objective function, which could maximize the network domain information of nodes reserved in d-dimensional feature space. Based on the random walk, a second order random walk process is designed, which is equivalent to an extension of DeepWalk algorithm, and preserves the graph characteristics of neighbor nodes. Applicable to node function similarity comparison, node structure similarity comparison, community clustering and other scenarios.R + +Parameter descriptions are as follows: + + + + +- NebulaGraph Analytics + - Input parameters + |Parameter|Predefined value|Description| + |:--|:--|:--| + |`is_weighted`|`false`| Random walk with bias or not.| + |`p`|`1.0`| The backward bias for random walk.| + |`q`|`0.5`| The forward bias for random walk.| + |`epoch`|`1`| The number of iterations.| + |`step`|`10`| The number of steps per iteration.| + |`rate`|`0.02`| The rate of the random walk.| + + - Output parameters + Output multiple columns where vertices in the same column are associated. + ## Clustering ### ClusteringCoefficient diff --git a/docs-2.0/graph-computing/nebula-analytics.md b/docs-2.0/graph-computing/nebula-analytics.md index 4d956e53527..1de1fffb157 100644 --- a/docs-2.0/graph-computing/nebula-analytics.md +++ b/docs-2.0/graph-computing/nebula-analytics.md @@ -41,6 +41,7 @@ NebulaGraph Analytics supports the following graph algorithms. | BetweennessCentrality | Intermediate centrality | Node importance measurement| | ClosenessCentrality | Closeness centrality | Node importance measurement| | TriangleCount | It counts the number of triangles. | Graph feature | +| Node2Vec | Graph neural network | Graph feature | | LPA | Label Propagation Algorithm | Community discovery | | WCC | Weakly connected component | Community discovery | | LOUVAIN | It detects communities in large networks. | Community discovery | diff --git a/docs-2.0/nebula-explorer/graph-explorer/property-calculation.md b/docs-2.0/nebula-explorer/graph-explorer/property-calculation.md index 4653c64bb12..bc941ceebc8 100644 --- a/docs-2.0/nebula-explorer/graph-explorer/property-calculation.md +++ b/docs-2.0/nebula-explorer/graph-explorer/property-calculation.md @@ -26,7 +26,7 @@ There were [aggregated edges](../canvas-operations/visualization-mode.md) on the Click **+** to add more edge types for property calculation. -![propertycalculation](https://docs-cdn.nebula-graph.com.cn/figures/propertycalculation-220913-en.png) +![propertycalculation](https://docs-cdn.nebula-graph.com.cn/figures/propertycalculation-220928-en.png) ### Method 2