Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Node2Vec sklearn-like interface #958

Closed
wants to merge 9 commits into from
4 changes: 2 additions & 2 deletions graspologic/embed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
from .mase import MultipleASE
from .mds import ClassicalMDS
from .mug2vec import mug2vec
from .n2v import node2vec_embed
from .omni import OmnibusEmbed
from .n2v import Node2VecEmbed
from .svd import select_dimension, select_svd

__all__ = [
Expand All @@ -18,7 +18,7 @@
"AdjacencySpectralEmbed",
"LaplacianSpectralEmbed",
"MultipleASE",
"node2vec_embed",
"Node2VecEmbed",
"select_dimension",
"select_svd",
"BaseSpectralEmbed",
Expand Down