add method 'transform' for SpectralEmbedding
See original GitHub issueFor SpectralEmbedding
, is there any plan to add the method transform
? This is related to the old post #2887
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
sklearn.manifold.SpectralEmbedding
Forms an affinity matrix given by the specified function and applies spectral decomposition to the corresponding graph laplacian. The resulting transformation ...
Read more >Minimalistic Unsupervised Learning with the ... - OpenReview
Our approach leverages the sparse manifold transform, which unifies sparse coding, manifold learning, and slow feature analysis.
Read more >One-Hot Graph Encoder Embedding - Papers With Code
In this paper we propose a lightning fast graph embedding method called ... and can be viewed as a transformation of the spectral...
Read more >Learning Eigenfunctions Links Spectral ... - CiteSeerX
new points, i.e. turning the spectral embedding algorithms into function induction algorithms. The Nyström formula obtained this way is well ...
Read more >Minimalistic Unsupervised Learning with the Sparse ... - DeepAI
Our approach leverages the sparse manifold transform, which unifies sparse ... (c) Spectral embedding assigns similar values to nearby dictionary elements.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Is this something anyone is working on? If not, I’d be happy to dig into it. Seems like it might take a bit of time/effort.
Unfortunately this prevents using SpectralEmbedding within pipelines:
TypeError: All intermediate steps should be transformers and implement fit and transform or be the string 'passthrough' (type <class 'sklearn.manifold._spectral_embedding.SpectralEmbedding'>) doesn't
which is sad because it supports fit_transform. Any workarounds (except for wrapping it in a custom transformer)?