diff options
author | zachcp <zachcp@users.noreply.github.com> | 2024-11-11 16:13:52 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-11 22:13:52 +0100 |
commit | 37692065837b2d635d2eb9e7ce3e4e1d439f7028 (patch) | |
tree | 6259871da1378adfc43b242b15c967c767819bcd /candle-core/src/lib.rs | |
parent | e2b6b367fa852ed30ac532f8d77cd8479c7ed092 (diff) | |
download | candle-37692065837b2d635d2eb9e7ce3e4e1d439f7028.tar.gz candle-37692065837b2d635d2eb9e7ce3e4e1d439f7028.tar.bz2 candle-37692065837b2d635d2eb9e7ce3e4e1d439f7028.zip |
Update docs (#2553)
* add module docs for candle-core
* doc each of the candle-nn modules and add the links to the doc page
Diffstat (limited to 'candle-core/src/lib.rs')
-rw-r--r-- | candle-core/src/lib.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/candle-core/src/lib.rs b/candle-core/src/lib.rs index 39ca909d..4b73d006 100644 --- a/candle-core/src/lib.rs +++ b/candle-core/src/lib.rs @@ -32,6 +32,20 @@ //! Python can really add overhead in more complex workflows and the [GIL](https://www.backblaze.com/blog/the-python-gil-past-present-and-future/) is a notorious source of headaches. //! //! Rust is cool, and a lot of the HF ecosystem already has Rust crates [safetensors](https://github.com/huggingface/safetensors) and [tokenizers](https://github.com/huggingface/tokenizers) +//! +//! ## Other Crates +//! +//! Candle consists of a number of crates. This crate holds core the common data structures but you may wish +//! to look at the docs for the other crates which can be found here: +//! +//! - [candle-core](https://docs.rs/candle-core/). Core Datastructures and DataTypes. +//! - [candle-nn](https://docs.rs/candle-nn/). Building blocks for Neural Nets. +//! - [candle-datasets](https://docs.rs/candle-datasets/). Rust access to commonly used Datasets like MNIST. +//! - [candle-examples](https://docs.rs/candle-examples/). Examples of Candle in Use. +//! - [candle-onnx](https://docs.rs/candle-onnx/). Loading and using ONNX models. +//! - [candle-pyo3](https://docs.rs/candle-pyo3/). Access to Candle from Python. +//! - [candle-transformers](https://docs.rs/candle-transformers/). Candle implemntation of many published transformer models. +//! #[cfg(feature = "accelerate")] mod accelerate; |