Crate concision_linear

Source
Expand description

§Linear Models

This library works to provide the necessary tools for creating and training linear models. The primary focus is on the Linear model, which is a simple linear model that can be used for regression or classification tasks.

Re-exports§

pub use self::model::Config;
pub use self::model::Features;
pub use self::model::Layout;
pub use self::model::Linear;
pub use self::norm::LayerNorm;
pub use self::params::ParamsBase;
pub use self::params::mode::*;
pub use self::traits::*;

Modules§

model
norm
Normalization
params
prelude
traits

Functions§

is_biased
A utilitarian function for checking if a type is Biased; returns false otherwise. Compares the TypeId of K to the TypeId of Biased.

Type Aliases§

LinearParams
LinearParamsShared