This repository contains the simulation notebooks used for the DELVE paper experiments.
notebooks/: experiment notebookssrc/functions.py: shared helper functions used by multiple notebooksdata/: optional place for local input data (kept mostly out of git)scripts/: maintenance scripts for preparing notebooks before publishing
Line VS. Rectangle -convergence.ipynbLine VS. Rectangle .ipynbLine VS cube.ipynbTorus - multimodal.ipynbYoda and Rabit.ipynbAccelerometer VS gyroscope.ipynbECG example.ipynbECG real data.ipynb
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
jupyter labTo reduce repository size and remove machine-specific outputs:
python scripts/strip_notebooks.pyThis clears notebook cell outputs and execution counts in notebooks/.
git add .
git commit -m "Add DELVE simulation notebooks and project structure"
git branch -M main
git remote add origin <YOUR_REPO_URL>
git push -u origin main- Some notebooks may require local datasets that are not committed.
- If you have large files, use Git LFS for
.mat,.npy, or media files.