llms_from_scratch_rs/examples/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
//! Examples
//!
//! This module contains Rust translations for the example PyTorch code provided
//! in each chapter. That is, the code that is found "in-line" along with the
//! main text and specifically not the code belonging to any given Listing.

pub mod ch02;
pub mod ch03;
pub mod ch04;
pub mod ch05;
pub mod ch06;
pub mod ch07;