Views
No views yet
💡 Note on Benchmark Specification: This model is trained for the Synthetic Binary mNIH Benchmark (s-mNIH) (vocab_size = 2: 0 for haystack noise, 1 for needle impulse). It serves as a physical proof-of-concept for continuous toroidal geodesic integration and thresholding. For real-text Needle-in-a-Haystack (passkeys in natural language text), refer topush/models/pgfn/hf/pgfn-needle/.
💡 Technical Note on K: This model is trained for exactly K=2 needles. Its deterministic behavior (no hallucination of state changes) is a direct result of geodesic integration. Variable K support is a matter of training curriculum, not architectural limitation.
pip install gfn==2.7.21git lfs install
2git clone https://huggingface.co/DepthMuun/gfn-gssm-mnih-k2
3cd gfn-gssm-mnih-k2inference.py script to test sequence retrieval:python inference.pyinference.py, use the gssm high-level API:1import torch
2from gfn import gssm
3
4# Load model (automatically detects config.json)
5model = gssm.load("mnih_model_final.pt", device="cpu")
6model.eval()
7
8# Sequence test
9# Model returns (logits, state, info)
10logits, _, _ = model(sequence)
11# Geometric decoding logic is detailed in inference.py1@article{sturtz2026gfn,
2 title = {Geometric Flow Networks: A Physics-Informed Paradigm for Sequential Intelligence},
3 author = {St{\"u}rtz, Joaqu{\'i}n},
4 journal = {GFN Research Preprint},
5 year = {2026},
6 publisher = {DepthMuun Research},
7 doi = {10.5281/zenodo.19141132},
8 url = {https://doi.org/10.5281/zenodo.19141132}
9}