linfa-ensemble 0.8.1

A general method for creating ensemble classifiers
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2018"
name = "linfa-ensemble"
version = "0.8.1"
authors = [
    "James Knight <jamesknight@hadean.com>",
    "James Kay <james@hadean.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A general method for creating ensemble classifiers"
readme = "README.md"
keywords = [
    "machine-learning",
    "linfa",
    "ensemble",
]
categories = [
    "algorithms",
    "mathematics",
    "science",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-ml/linfa"

[features]
default = []
serde = [
    "serde_crate",
    "ndarray/serde",
]

[lib]
name = "linfa_ensemble"
path = "src/lib.rs"

[[example]]
name = "adaboost_iris"
path = "examples/adaboost_iris.rs"

[[example]]
name = "ensemble_iris"
path = "examples/ensemble_iris.rs"

[dependencies.linfa]
version = "0.8.1"

[dependencies.linfa-trees]
version = "0.8.1"

[dependencies.ndarray]
version = "0.16"
features = [
    "rayon",
    "approx",
]

[dependencies.ndarray-rand]
version = "0.15"

[dependencies.rand]
version = "0.8.5"

[dependencies.serde_crate]
version = "1.0"
features = [
    "std",
    "derive",
]
optional = true
default-features = false
package = "serde"

[dev-dependencies.linfa-datasets]
version = "0.8.1"
features = ["iris"]