[package]
name = "matten-mlprep"
description = "Small, transparent, deterministic preprocessing helpers for matten::Tensor (no ML framework)."
readme = "README.md"
categories = ["science", "mathematics"]
keywords = ["tensor", "preprocessing", "standardize", "matten", "ml"]
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
matten = { workspace = true }
[features]
dynamic = ["matten/dynamic"]
[[example]]
name = "mlprep_standardize_columns"
path = "examples/standardize_columns.rs"
[[example]]
name = "mlprep_minmax_scale"
path = "examples/minmax_scale.rs"
[[example]]
name = "mlprep_add_bias_column"
path = "examples/add_bias_column.rs"
[[example]]
name = "mlprep_train_test_split"
path = "examples/train_test_split.rs"