mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-06-04 23:53:21 -05:00
- Changed author from 'TinyTorch Team' to 'Vijay Janapa Reddi, Harvard University' - Removed copyright notice (© Copyright 2025) - Updated book title to match new tagline - Footer now shows clean author attribution without copyright clutter
50 lines
1.3 KiB
YAML
50 lines
1.3 KiB
YAML
# Tiny🔥Torch: Build ML Systems from Scratch
|
|
# Interactive Jupyter Book Configuration
|
|
|
|
title: "Tiny🔥Torch: Build your own Machine Learning framework from scratch"
|
|
author: "Prof. Vijay Janapa Reddi (Harvard University)"
|
|
logo: logo.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
|
|
|
|
# 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
|
|
|
|
# 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
|
|
|
|
# Advanced options
|
|
only_build_toc_files: true
|