mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-04-30 03:09:06 -05:00
- Implement tito benchmark baseline and capstone commands - Add SPEC-style normalization for baseline benchmarks - Implement tito community join, update, leave, stats, profile commands - Use project-local storage (.tinytorch/) for user data - Add privacy-by-design with explicit consent prompts - Update site documentation for community and benchmark features - Add Marimo integration for online notebooks - Clean up redundant milestone setup exploration docs - Finalize baseline design: fast setup validation (~1 second) with normalized results
29 lines
703 B
Plaintext
29 lines
703 B
Plaintext
# TinyTorch Binder Environment
|
|
# This file is used by Binder to set up the execution environment
|
|
# Keep synchronized with main requirements.txt and site/requirements.txt
|
|
|
|
# Core numerical computing (TinyTorch dependency)
|
|
numpy>=1.24.0,<3.0.0
|
|
|
|
# Terminal UI (for tito CLI and development feedback)
|
|
rich>=13.0.0
|
|
|
|
# Configuration files (for tito CLI)
|
|
PyYAML>=6.0
|
|
|
|
# Jupyter environment
|
|
jupyter>=1.1.0
|
|
jupyterlab>=4.2.0
|
|
ipykernel>=6.29.0
|
|
ipywidgets>=8.0.0
|
|
|
|
# Visualization (for milestone examples and modules)
|
|
matplotlib>=3.9.0
|
|
|
|
# Type checking support
|
|
typing-extensions>=4.12.0
|
|
|
|
# Note: tinytorch package itself is installed via postBuild script
|
|
# This ensures the latest code from the repository is used
|
|
|