llms_from_scratch_rs/exercises/mod.rs
//! Exercises
//!
//! This module contains solutions to the exercises found in each chapter of
//! the LLMs From Scratch book. The book offers code solutions to exercises that
//! are based in PyTorch. Here, we provide solutions using Rust and the Candle
//! crate.
pub mod ch02;
pub mod ch03;
pub mod ch04;
pub mod ch05;
pub mod ch06;
pub mod ch07;