You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Joe McCain III edited this page Dec 7, 2025
·
4 revisions
Welcome to the concision wiki!
Concision aims to be a complete machine-learning framework for Rust.
Features
ParamsBase
One focus of the project was to provide a ParamsBase object that allows for the definition of a weight / bias pair. The implementation serves as a natural extension of the ndarray crate by defining automatically defining the bias tensor to be the smaller dimension:
use ndarray::{ArrayBase,Dimension,RawData};pubstructParamsBase<S,D,A = <SasRawData>::Elem>whereD:Dimension,S:RawData<Elem = A>,{pubbias:ArrayBase<S,D::Smaller,A>,pubweights:ArrayBase<S,D,A>,}