Skip to content

Commit

Permalink
revert pipeline/embed/__init__.py export order
Browse files Browse the repository at this point in the history
  • Loading branch information
darthtrevino committed May 10, 2024
1 parent 9656575 commit a898d8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions graspologic/pipeline/embed/__init__.py
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"]

0 comments on commit a898d8b

Please sign in to comment.