Use graph embedding algorithms in scikit-network
masterGraph embedding algorithms in scikit-network assign a vector to each node of a graph. The resulting vectors are stored in the embedding_ attribute of the estimator after fitting.
Available embedding methods include:
- Spectral: Spectral embedding.
- SVD: Singular Value Decomposition.
- GSVD: Generalized Singular Value Decomposition.
- PCA: Principal Component Analysis.
- Random Projection: Random projection methods.
- Louvain: Louvain-based embedding.
- Force Atlas: Force Atlas layout-based embedding.
- Spring: Spring layout-based embedding.