llms_from_scratch_rs/examples/mod.rs
1//! Examples
2//!
3//! This module contains Rust translations for the example PyTorch code provided
4//! in each chapter. That is, the code that is found "in-line" along with the
5//! main text and specifically not the code belonging to any given Listing.
6
7pub mod apdx_e;
8pub mod ch02;
9pub mod ch03;
10pub mod ch04;
11pub mod ch05;
12pub mod ch06;
13pub mod ch07;