mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-04-27 20:37:40 -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
21 lines
516 B
Bash
Executable File
21 lines
516 B
Bash
Executable File
#!/bin/bash
|
|
# Binder postBuild script
|
|
# This runs after the environment is set up to install TinyTorch
|
|
|
|
set -e
|
|
|
|
echo "🔧 Installing TinyTorch package..."
|
|
pip install -e .
|
|
|
|
echo "✅ TinyTorch installation complete!"
|
|
echo ""
|
|
echo "📚 Available resources:"
|
|
echo " - TinyTorch modules: modules/"
|
|
echo " - Course assignments: assignments/"
|
|
echo " - Milestone examples: milestones/"
|
|
echo ""
|
|
echo "🚀 Start exploring with:"
|
|
echo " - jupyter lab"
|
|
echo " - Or open notebooks directly from the file browser"
|
|
|