Files
TinyTorch/binder/postBuild
Vijay Janapa Reddi 97e0563614 Add community and benchmark features with baseline validation
- 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
2025-11-20 00:17:21 -05:00

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"