[package]
edition = "2021"
rust-version = "1.85"
name = "blr-active"
version = "0.1.0"
authors = ["Christoph Brewing <christoph.brewing@wamli.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Active learning orchestration for Bayesian Linear Regression with Automatic Relevance Determination"
homepage = "https://wamli.github.io/"
documentation = "https://docs.rs/blr-active"
readme = "README.md"
keywords = [
"bayesian",
"active-learning",
"calibration",
"sensor",
"orchestration",
]
categories = [
"algorithms",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/wamli/blr-active"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["std"]
std = ["blr-core/std"]
[lib]
name = "blr_active"
crate-type = ["lib"]
path = "src/lib.rs"
[[example]]
name = "multi_sensor_workflow"
path = "examples/multi_sensor_workflow.rs"
[[example]]
name = "quick_start"
path = "examples/quick_start.rs"
[[test]]
name = "test_acquisition_function"
path = "tests/test_acquisition_function.rs"
[[test]]
name = "test_noise_estimation_integration"
path = "tests/test_noise_estimation_integration.rs"
[[test]]
name = "test_noise_estimation_unit"
path = "tests/test_noise_estimation_unit.rs"
[[test]]
name = "test_noise_floor_detection"
path = "tests/test_noise_floor_detection.rs"
[[test]]
name = "test_orchestration_loop"
path = "tests/test_orchestration_loop.rs"
[[test]]
name = "test_precision_assessment"
path = "tests/test_precision_assessment.rs"
[[test]]
name = "test_variance_computation"
path = "tests/test_variance_computation.rs"
[dependencies.blr-core]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.approx]
version = "0.5"