Views
No views yet
1from huggingface_hub import snapshot_download
2
3# Download checkpoint
4checkpoint_dir = snapshot_download(
5 repo_id="cpennetier/spectral-graph-diffusion-n30",
6 repo_type="model",
7)
8
9# Use with the spectral-graph-diffusion repo's sampler:
10# https://github.com/cpennetier/spectral-graph-diffusion
11# python -m model.sample --ckpt {checkpoint_dir} --target_lambda 12 --w 2.01@misc{pennetier2026diffusion,
2 author = {Pennetier, Christophe},
3 title = {Regime-Dependent Guidance in Spectral Graph Diffusion},
4 year = {2026},
5 url = {https://arxiv.org/abs/XXXX.XXXXX},
6 note = {Code: https://github.com/cpennetier/spectral-graph-diffusion}
7}