Teacher
s now supportserde::{Serialize, Deserialize}
FixedDimension
introduced to distinguish Vector types which dimension is known at compile time.Linear
andLogistic
models have gained new constructorswith_feature_dimension
.Linear
andLogistic
models are no longer default constructible with Vector types whose dimension is unknown at compile time. This has been introduced to catch an error a where dot product of vectors with different dimensionality has been calculated at compile time.- A new example
iris_vec
has been added. Using a dynamically allocated vector for the features.
- Implement
linear_algebra::Vector
forVec<f64>
.