sklears-python 0.1.0-beta.1

Python bindings for sklears machine learning library using PyO3
Documentation
[dependencies.anyhow]
version = "1.0"

[dependencies.num_cpus]
version = "1.17"

[dependencies.numpy]
version = "0.25"

[dependencies.polars]
default-features = false
features = ["lazy", "ndarray"]
optional = true
version = "0.52"

[dependencies.pyo3]
features = ["extension-module", "chrono", "indexmap"]
version = "0.25"

[dependencies.rayon]
version = "1.11"

[dependencies.scirs2-autograd]
default-features = false
version = "0.1.1"

[dependencies.scirs2-core]
default-features = false
features = ["random", "linalg"]
version = "0.1.1"

[dependencies.scirs2-linalg]
default-features = false
version = "0.1.1"

[dependencies.serde]
features = ["derive", "derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.sklears-core]
version = "0.1.0-beta.1"

[dependencies.sklears-linear]
features = ["bayesian", "elastic-net", "logistic-regression"]
version = "0.1.0-beta.1"

[dependencies.sklears-metrics]
version = "0.1.0-beta.1"

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.proptest]
version = "1.7"

[features]
default = ["pandas-integration"]
pandas-integration = ["polars"]
parallel = []

[lib]
crate-type = ["cdylib"]
name = "sklears_python"
path = "src/lib.rs"

[package]
authors = ["COOLJAPAN OU (Team KitaSan)"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["api-bindings", "science", "mathematics"]
description = "Python bindings for sklears machine learning library using PyO3"
edition = "2021"
homepage = "https://github.com/cool-japan/sklears"
keywords = ["machine-learning", "python", "pyo3", "scikit-learn", "bindings"]
license = "MIT OR Apache-2.0"
name = "sklears-python"
readme = "README.md"
repository = "https://github.com/cool-japan/sklears"
rust-version = "1.70"
version = "0.1.0-beta.1"

[[test]]
name = "lib"
path = "tests/lib.rs"

[[test]]
name = "test_clustering"
path = "tests/test_clustering.rs"

[[test]]
name = "test_linear_regression"
path = "tests/test_linear_regression.rs"

[[test]]
name = "test_metrics"
path = "tests/test_metrics.rs"