Skip to content

Commit 7361abf

Browse files
authored
Merge pull request #33 from SingleRust/dev-svdlib-upgrade
Upgraded SVDLib
2 parents e6d2ff5 + 1d19d14 commit 7361abf

File tree

4 files changed

+145
-25
lines changed

4 files changed

+145
-25
lines changed

Cargo.lock

Lines changed: 136 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "single_algebra"
3-
version = "0.8.3"
3+
version = "0.8.4"
44
edition = "2021"
55
license-file = "LICENSE.md"
66
description = "A linear algebra convenience library for the single-rust library. Can be used externally as well."
@@ -35,9 +35,11 @@ num-traits = "0.2.19"
3535
rayon = "1.10.0"
3636
simba = { version = "0.9.0", optional = true }
3737
smartcore = { version = "0.4", features = ["ndarray-bindings"], optional = true }
38-
single-svdlib = { version = "1.0.4" }
38+
single-svdlib = { version = "1.0.5"}
3939
rand = "0.9.0"
40-
single-utilities = "0.7.0"
40+
single-utilities = "0.8.0"
41+
linfa-tsne = {version = "0.7.1"}
42+
linfa = "0.7.1"
4143

4244
[dev-dependencies]
4345
criterion = "0.5.1"

src/dimred/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
pub mod pca;
1+
pub mod pca;
2+
//pub mod tsne;

src/dimred/tsne/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Still working on that
2+
// Probably going to implement, either using Linfa_tsne or another approach

0 commit comments

Comments
 (0)