-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
revert pipeline/embed/__init__.py export order
- Loading branch information
1 parent
9656575
commit a898d8b
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# Copyright (c) Microsoft Corporation. | ||
# Licensed under the MIT license. | ||
|
||
# ruff: noqa: E402 SVD_SOLVER_TYPES needs to be first | ||
""" | ||
The embed module of ``graspologic.pipeline.embed`` is intended to provide faster | ||
application development support. The functions provided in it reflect common call | ||
patterns used when developing data processing pipelines and future consumption | ||
by nearest neighbor services and visualization routines. | ||
""" | ||
|
||
__SVD_SOLVER_TYPES = ["randomized", "full", "truncated"] | ||
from .adjacency_spectral_embedding import adjacency_spectral_embedding | ||
from .embeddings import Embeddings, EmbeddingsView | ||
from .laplacian_spectral_embedding import laplacian_spectral_embedding | ||
from .omnibus_embedding import omnibus_embedding_pairwise | ||
|
||
__SVD_SOLVER_TYPES = ["randomized", "full", "truncated"] |