Add your description here
Project description
Getting started
This website serves as a living companion to the tutorial manuscript and to the tutorial presentation at ICML 2025. It dreams of being a one-stop shop for learning all things about Associative Memory. It’s definitely not there yet.
Website structure
Notebook demos
The website is a (growing) collection of notebook demos on Associative
Memory. Each notebook is primarily a blog post on this site, but it is
also fully runnable on colab and as a raw .ipynb file using the uv
environment setup below.
- Dense binary storage, also distributed as colab notebook and raw .ipynb.
- Energy Transformer, also distributed as colab notebook and raw .ipynb.
- Diffusion as Memory, also distributed as colab notebook and raw .ipynb.
- Distributed Associative Memory, also distributed as colab notebook and raw .ipynb.
See the overview in tutorials for a bit more detail.
To add new examples, edit the source tutorial notebooks (as either
.ipynb or plain text .qmd files) saved in nbs/tutorial/.
[!WARNING]
Slow first run
The first time you run the notebooks will be slow. We cache some of the long-running code after the first time, but the cache will not persist across Colab sessions.
Utitity library
pip install amtutorial
We aim for simplicity and clarity in the notebooks. Thus, we migrate
some helper functions (particularly around loading and processing data)
to a pypi package called
amtutorial to avoid
cluttering the notebooks. An added benefit of this is that all
dependencies needed to run these notebooks can be installed using
pip install amtutorial.
[!NOTE]
How this website is built
The website is built using an in-house fork of
nbdevthat develops everything in this tutorial from source.ipynbor.qmdfiles saved innbs/. The website, pypi package, and package documentation all come for free withnbdev. The in-house fork enables working with plain text.qmdfiles instead of.ipynbfiles. With the right extensions and hotkeys,.qmdfiles are pleasant to develop inside VSCode and interop seamlessly with both git and AI tooling.
Installation
I just want to run the notebooks locally
pip install amtutorial
## Install torch to run the `diffusion as memory` notebook. CPU or CUDA versions work
# pip install torch --index-url https://download.pytorch.org/whl/cpu
## OPTIONAL: For rendering videos in notebooks, use ffmpeg. Can use conda to install as
#conda install conda-forge::ffmpeg conda-forge::openh264
Then open up the .ipynb notebooks in tutorial_ipynbs/ in your favorite
notebook editor, using the same env where you installed amtutorial.
I want to develop the website
Pre-requisites
- Install
uvusingcurl -LsSf https://astral.sh/uv/install.sh | sh - Install
quarto - We use
conda(or better yet,mamba) for managing theffmpegdependency, which only matters ifffmpegis not already installed on your system.
Setting up the environment
From the root of the repo:
uv sync
source .venv/bin/activate
# Expose venv to ipython
uv run ipython kernel install --user --env VIRTUAL_ENV $(pwd)/.venv --name=amtutorial
## Install torch to run the `diffusion as memory` notebook. CPU or CUDA versions work
# pip install torch --index-url https://download.pytorch.org/whl/cpu
# OPTIONAL: For rendering videos in notebooks
conda install conda-forge::ffmpeg conda-forge::openh264
Development pipelines
View a local version of the website with:
uv run nbdev_preview
Pushes to main deploy the website. The site will be live after a few
minutes on github.
git checkout main
# Update the website. Takes a moment even with cached training runs
make deploy && git add . && git commit -m "Update site" && git push
Make a minor-patch update to the pypi package (preferably, only if
amtutorials/src was updated):
make pypi && uv run nbdev_pypi
Useful scripts (for reference only)
uv run nbdev_preview # Preview website locally
bash scripts/prep_website_deploy.sh # Sync dependencies, export qmd notebooks to ipynb for colab, and build website
bash scripts/export_qmd_as_ipynb.sh # Export qmd notebooks to ipynb for colab
uv run python scripts/sync_dependencies.py # Sync nbdev and pyproject.toml dependencies
uv run python scripts/prep_pypi.py # Bump patch version and sync dependencies
uv run nbdev_pypi # Push to pypi
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file amtutorial-0.0.9.tar.gz.
File metadata
- Download URL: amtutorial-0.0.9.tar.gz
- Upload date:
- Size: 56.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80fa7c49c9ac631e78e7775e598d2d8866038671b4df1a2bb5598d1fa33373d5
|
|
| MD5 |
70c335c8944ec06b62c2cc1bc3c54264
|
|
| BLAKE2b-256 |
dca18f101d72703a763e616d69786e19dafde59f8fd8ae840f86b26fae4a9095
|
File details
Details for the file amtutorial-0.0.9-py3-none-any.whl.
File metadata
- Download URL: amtutorial-0.0.9-py3-none-any.whl
- Upload date:
- Size: 10.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74bc4d1eb78471b8a806ecdf4609d6ad72de0506074d0c3716544510fe24c461
|
|
| MD5 |
77efee2feb5940e7aecffc067bc75542
|
|
| BLAKE2b-256 |
cad2f7eb2c65355e20f3f61210bdec2943f3d18ad1a66590555560eb56d6913b
|