llms_from_scratch_rs/exercises/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
//! 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;