| Crates.io | manifolds-rs |
| lib.rs | manifolds-rs |
| version | 0.1.4 |
| created_at | 2025-11-24 16:26:29.048611+00 |
| updated_at | 2026-01-13 17:07:42.126274+00 |
| description | Embedding methods implemented into Rust, starting with UMAP, parametric UMAP and tSNE. |
| homepage | |
| repository | https://github.com/GregorLueg/manifolds-rs |
| max_upload_size | |
| id | 1948085 |
| size | 516,154 |
High-performance manifold learning and dimensionality reduction algorithms implemented in Rust. Contains for now
Rust implementations of various methods to project data onto two dimensions, especially UMAP and tSNE (Barnes-Hut implementation). These are typically used methods for visualising high-dimensional biological data, but not without controversy. The crate also provides via the Burn DL framework parametric UMAP that can be optionally be used via the prospective feature flag.
ann-search-rs:
Add this to your Cargo.toml:
[dependencies]
manifold-rs = "0.1.4"
If you want to enable parametric UMAP, please use:
[dependencies]
manifold-rs = { version = "0.1.4", features = [ "parametric" ] }
Please use version 0.1.3 and higher. These ones are not extensively tested
against real data.
MIT Licence
Copyright (c) 2025 Gregor Alexander Lueg
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.