File size: 2,374 Bytes
b78304c 2219983 b78304c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
---
license: cc-by-nc-4.0
tags:
- geometric deep learning
- SE(3)
- spatial reasoning
- AI geometry
---
<div align="center">
# π― GASM Weights
## Geometric Attention for Spatial & Mathematical Understanding
[](https://creativecommons.org/licenses/by-nc/4.0/)
[](https://huggingface.co/spaces/scheitelpunk/GASM)
*Neural architecture for SE(3)-invariant spatial reasoning from natural language*
</div>
---
## π§ About GASM
**GASM** stands for **Geometric Attention for Spatial & Mathematical Understanding**
This repository contains the pretrained model weights used in the live [Hugging Face Space](https://huggingface.co/spaces/scheitelpunk/GASM) to map input text into structured 3D spatial representations.
### π¬ Technical Components
- π£οΈ **NLP**: spaCy-based entity & relation parsing
- π **Geometry**: Lie group operations in **SE(3)** space
- π **Optimization**: Riemannian curvature optimization
---
## π Repository Contents
| File | Description |
|------|-------------|
| `gasm_weights.pth` | PyTorch weights file used by the core GASM engine |
---
## π Quick Start
Load the weights into your own pipeline using `huggingface_hub`:
```python
from huggingface_hub import hf_hub_download
import torch
# Download and load weights
weights_path = hf_hub_download("scheitelpunk/gasm-weights", "gasm_weights.pth")
model.load_state_dict(torch.load(weights_path))
```
---
## π License
Released under **CC-BY-NC 4.0** - For research and non-commercial use only. All rights reserved, Versino PsiOmega GmbH
### π Citation
If you use GASM or its weights, please cite:
```bibtex
@misc{gasm2025,
title={GASM: Geometric Attention for Spatial Understanding},
author={Michael Neuberger, Versino PsiOmega GmbH},
year={2025},
url={https://huggingface.co/spaces/scheitelpunk/GASM}
}
```
---
## π Related Repositories
- π¬ **[GASM Space](https://huggingface.co/spaces/scheitelpunk/GASM)** - Live demo
- π» **[Source Code](https://github.com/scheitelpunk/GASM-Huggingface)** - Implementation
---
<div align="center">
**Made with β€οΈ for geometric deep learning**
Versino PsiOmega GmbH, http://psiomega.versino.de
</div>
|