refactor(tinytorch): update remaining hardcoded module references

- Update integration test files for new module order
- Update checkpoint test definitions
- Update community HTML files (dashboard, index, tests)
- All references now use 05_dataloader, 06_autograd, 07_optimizers, 08_training
This commit is contained in:
Vijay Janapa Reddi
2025-12-18 13:16:56 -05:00
parent 86b437db2a
commit ea1f3c174f
7 changed files with 39 additions and 38 deletions

View File

@@ -389,25 +389,25 @@
people: [{name: "Adrien-Marie Legendre", role: "Least Squares"}, {name: "C.E. Shannon", role: "Information Entropy"}]
},
{
id: "05_autograd", title: "Autograd", year: "1970", val: 0.22,
id: "05_dataloader", title: "Data Pipelines", year: "2010s", val: 0.22,
desc: "Efficient batching and pre-fetching.",
people: [{name: "Jeff Dean", role: "DistBelief/MapReduce"}, {name: "PyTorch Team", role: "DataLoader utility"}]
},
{
id: "06_autograd", title: "Autograd", year: "1970", val: 0.26,
desc: "Automatic Differentiation.",
people: [{name: "Seppo Linnainmaa", role: "Reverse Mode AD"}, {name: "Rumelhart et al.", role: "Applied to NN"}]
},
{
id: "06_optimizers", title: "Optimizers", year: "1951", val: 0.26,
id: "07_optimizers", title: "Optimizers", year: "1951", val: 0.30,
desc: "SGD, Adam, Scheduling.",
people: [{name: "Robbins & Monro", role: "Stochastic Approximation"}, {name: "Kingma & Ba", role: "Adam (2014)"}]
},
{
id: "07_training", title: "Training Loops", year: "1986", val: 0.30,
id: "08_training", title: "Training Loops", year: "1986", val: 0.35,
desc: "The learning cycle logic.",
people: [{name: "Geoffrey Hinton", role: "Backpropagation"}, {name: "Yann LeCun", role: "Early frameworks"}]
},
{
id: "08_dataloader", title: "Data Pipelines", year: "2010s", val: 0.35,
desc: "Efficient batching and pre-fetching.",
people: [{name: "Jeff Dean", role: "DistBelief/MapReduce"}, {name: "PyTorch Team", role: "DataLoader utility"}]
},
{
id: "09_convolutions", title: "Convolutions (CNN)", year: "1998", val: 0.40,
desc: "Conv2d, MaxPool, Vision.",