├── .gitignore ├── .python-version ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cs336_scaling ├── __init__.py └── model.py ├── cs336_spring2025_assignment3_scaling.pdf ├── data └── isoflops_curves.json ├── pyproject.toml └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-cs336/assignment3-scaling/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-cs336/assignment3-scaling/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-cs336/assignment3-scaling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-cs336/assignment3-scaling/HEAD/README.md -------------------------------------------------------------------------------- /cs336_scaling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-cs336/assignment3-scaling/HEAD/cs336_scaling/__init__.py -------------------------------------------------------------------------------- /cs336_scaling/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-cs336/assignment3-scaling/HEAD/cs336_scaling/model.py -------------------------------------------------------------------------------- /cs336_spring2025_assignment3_scaling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-cs336/assignment3-scaling/HEAD/cs336_spring2025_assignment3_scaling.pdf -------------------------------------------------------------------------------- /data/isoflops_curves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-cs336/assignment3-scaling/HEAD/data/isoflops_curves.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-cs336/assignment3-scaling/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-cs336/assignment3-scaling/HEAD/uv.lock --------------------------------------------------------------------------------