Update docs (#2553)

* add module docs for candle-core

* doc each of the candle-nn modules and add the links to the doc page
This commit is contained in:
zachcp
2024-11-11 16:13:52 -05:00
committed by GitHub
parent e2b6b367fa
commit 3769206583
10 changed files with 48 additions and 0 deletions

View File

@ -1,3 +1,5 @@
//! A `VarBuilder` for variable retrieval from models
//!
//! A `VarBuilder` is used to retrieve variables used by a model. These variables can either come
//! from a pre-trained checkpoint, e.g. using `VarBuilder::from_mmaped_safetensors`, or initialized
//! for training, e.g. using `VarBuilder::from_varmap`.