mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-04-29 15:12:35 -05:00
All module references updated to reflect new ordering: - Module 15: Quantization (was 16) - Module 16: Compression (was 17) - Module 17: Memoization (was 15) Updated by module-developer and website-manager agents: - Module ABOUT files with correct numbers and prerequisites - Cross-references and "What's Next" chains - Website navigation (_toc.yml) and content - Learning path progression in LEARNING_PATH.md - Profile milestone completion message (Module 17) Pedagogical flow now: Profile → Quantize → Prune → Cache → Accelerate
91 lines
2.0 KiB
YAML
91 lines
2.0 KiB
YAML
# TinyTorch: Build ML Systems from Scratch
|
|
# Interactive Jupyter Book Configuration
|
|
|
|
title: "TinyTorch"
|
|
author: "Prof. Vijay Janapa Reddi (Harvard University)"
|
|
copyright: "2025"
|
|
logo: _static/logos/logo-tinytorch-white.png
|
|
|
|
# Book description and metadata
|
|
description: >-
|
|
An interactive course for building machine learning systems from the ground up.
|
|
Learn by implementing your own PyTorch-style framework with hands-on coding,
|
|
real datasets, and production-ready practices.
|
|
|
|
# Execution settings for interactive notebooks
|
|
execute:
|
|
execute_notebooks: "cache"
|
|
allow_errors: true
|
|
timeout: 300
|
|
|
|
# Exclude patterns - don't scan these directories/files
|
|
exclude_patterns:
|
|
- _build
|
|
- .venv
|
|
- appendices
|
|
- "**/.venv/**"
|
|
- "**/__pycache__/**"
|
|
- "**/.DS_Store"
|
|
|
|
# GitHub repository configuration for GitHub Pages
|
|
repository:
|
|
url: https://github.com/mlsysbook/TinyTorch
|
|
path_to_book: book
|
|
branch: main
|
|
|
|
# HTML output configuration
|
|
html:
|
|
use_issues_button: true
|
|
use_repository_button: true
|
|
use_edit_page_button: true
|
|
use_download_button: true
|
|
use_fullscreen_button: true
|
|
|
|
# Custom styling
|
|
extra_css:
|
|
- _static/custom.css
|
|
|
|
# Custom JavaScript
|
|
extra_js:
|
|
- _static/wip-banner.js
|
|
|
|
# Favicon configuration
|
|
favicon: "_static/favicon.svg"
|
|
|
|
# Binder integration for executable notebooks
|
|
launch_buttons:
|
|
binderhub_url: "https://mybinder.org"
|
|
colab_url: "https://colab.research.google.com"
|
|
|
|
# LaTeX/PDF output
|
|
latex:
|
|
latex_documents:
|
|
targetname: tinytorch-course.tex
|
|
|
|
# Bibliography support
|
|
bibtex_bibfiles:
|
|
- references.bib
|
|
|
|
# Sphinx extensions for enhanced functionality
|
|
sphinx:
|
|
extra_extensions:
|
|
- sphinxcontrib.mermaid
|
|
config:
|
|
mermaid_version: "10.6.1"
|
|
|
|
# Parse configuration for MyST Markdown
|
|
parse:
|
|
myst_enable_extensions:
|
|
- "colon_fence"
|
|
- "deflist"
|
|
- "html_admonition"
|
|
- "html_image"
|
|
- "linkify"
|
|
- "replacements"
|
|
- "smartquotes"
|
|
- "substitution"
|
|
- "tasklist"
|
|
|
|
# Advanced options
|
|
only_build_toc_files: true
|