Views
No views yet
| File | Description |
|---|---|
gasm_weights.pth | PyTorch weights file used by the core GASM engine |
huggingface_hub:1from huggingface_hub import hf_hub_download
2import torch
3
4# Download and load weights
5weights_path = hf_hub_download("scheitelpunk/gasm-weights", "gasm_weights.pth")
6model.load_state_dict(torch.load(weights_path))1@misc{gasm2025,
2 title={GASM: Geometric Attention for Spatial Understanding},
3 author={Michael Neuberger, Versino PsiOmega GmbH},
4 year={2025},
5 url={https://huggingface.co/spaces/scheitelpunk/GASM}
6}