[package] name = "linfa-ica" version = "0.7.0" authors = ["VasanthakumarV "] description = "A collection of Independent Component Analysis (ICA) algorithms" edition = "2018" license = "MIT OR Apache-2.0" repository = "https://github.com/rust-ml/linfa" readme = "README.md" keywords = ["factorization", "machine-learning", "linfa", "unsupervised"] categories = ["algorithms", "mathematics", "science"] [features] default = [] blas = ["ndarray-linalg", "linfa/ndarray-linalg"] serde = ["serde_crate", "ndarray/serde"] [dependencies.serde_crate] package = "serde" optional = true version = "1.0" default-features = false features = ["std", "derive"] [dependencies] ndarray = { version = "0.15" } linfa-linalg = { version = "0.1", default-features = false } ndarray-linalg = { version = "0.15", optional = true } ndarray-rand = "0.14" ndarray-stats = "0.5" num-traits = "0.2" rand_xoshiro = "0.6" thiserror = "1.0" linfa = { version = "0.7.0", path = "../.." } [dev-dependencies] ndarray-npy = { version = "0.8", default-features = false } paste = "1.0" criterion = "0.4.0" linfa = { version = "0.7.0", path = "../..", features = ["benchmarks"] } [[bench]] name = "fast_ica" harness = false