[package]
edition = "2021"
rust-version = "1.87"
name = "anofox-ml-preprocessing"
version = "0.1.0"
authors = ["Simon Müller <sm@data-zoo.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Feature preprocessing, scaling, and PCA for the anofox-ml machine learning library"
homepage = "https://github.com/sipemu/anofox-ml"
documentation = "https://docs.rs/anofox-ml-preprocessing"
readme = "README.md"
keywords = [
"machine-learning",
"preprocessing",
"pca",
"scaler",
"ndarray",
]
categories = [
"science",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sipemu/anofox-ml"
[lib]
name = "anofox_ml_preprocessing"
path = "src/lib.rs"
[dependencies.anofox-ml-core]
version = "0.1.0"
[dependencies.faer]
version = "0.23"
[dependencies.ndarray]
version = "0.16"
features = ["serde"]
[dependencies.num-traits]
version = "0.2"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.proptest]
version = "1.4"