Spaces:
Running
Running
Docs: Add scientific note on K=2 constraint and hallucination resistance
Browse files
app.py
CHANGED
|
@@ -122,7 +122,9 @@ with gr.Blocks(title="G-SSM MNIAH Solver", theme=gr.themes.Soft()) as demo:
|
|
| 122 |
gr.Markdown("""
|
| 123 |
**Params: 8,109** | **Memory: O(1) Flow** | **Mechanism: Inertial Integration**
|
| 124 |
|
| 125 |
-
Evaluation of high-precision retrieval over long contexts ($L > 1M$). The G-SSM integrates $K$ high-energy 'needle' impulses into its physical state.
|
|
|
|
|
|
|
| 126 |
""")
|
| 127 |
with gr.Row():
|
| 128 |
seq_len = gr.Number(value=1000, label="Sequence Length", precision=0)
|
|
|
|
| 122 |
gr.Markdown("""
|
| 123 |
**Params: 8,109** | **Memory: O(1) Flow** | **Mechanism: Inertial Integration**
|
| 124 |
|
| 125 |
+
Evaluation of high-precision retrieval over long contexts ($L > 1M$). The G-SSM integrates $K$ high-energy 'needle' impulses into its physical state.
|
| 126 |
+
|
| 127 |
+
> **⚠️ Scientific Note**: This specific checkpoint was trained for exactly **$K=2$** needles. Its adherence to this limit is empirical evidence of the model's geometric rigor: it does not "hallucinate" state transitions until the integrated energy crosses the learned geodetic threshold. Scaling to variable $K$ simply requires a variable-force training curriculum.
|
| 128 |
""")
|
| 129 |
with gr.Row():
|
| 130 |
seq_len = gr.Number(value=1000, label="Sequence Length", precision=0)
|