ataeff commited on
Commit
1fe7176
·
verified ·
1 Parent(s): 2faea97

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +209 -3
README.md CHANGED
@@ -1,3 +1,209 @@
1
- ---
2
- license: gpl-3.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gpl-3.0
3
+ tags:
4
+ - text-generation-inference
5
+
6
+ # HAZE — Hybrid Attention Entropy System
7
+
8
+ > *"emergence is not creation but recognition"*
9
+ >
10
+ > **Weightless language model architecture. Proof-of-concept that intelligence lives in process, not parameters.**
11
+ >
12
+ > 🌫️ [Try HAZE](https://huggingface.co/spaces/ataeff/haze) | 🐙 [GitHub](https://github.com/ariannamethod/haze)
13
+ >
14
+ > ---
15
+ >
16
+ > ## The Claim
17
+ >
18
+ > You don't need billions of parameters. You don't need gradient descent. You don't need backpropagation.
19
+ >
20
+ > **You need architecture that understands what intelligence actually is.**
21
+ >
22
+ > HAZE is ~0 trainable parameters. CLOUD (optional emotional preprocessor) is ~181K.
23
+ >
24
+ > HuggingFace is full of nanoGPT clones trained on Shakespeare. This is not that.
25
+ >
26
+ > This is a paradigm break.
27
+ >
28
+ > ---
29
+ >
30
+ > ## Architecture
31
+ >
32
+ > ### HAZE Core — ~0 parameters
33
+ >
34
+ > - **Subjectivity module**: NO SEED FROM PROMPT. Generates from internal field state, not input echo.
35
+ > - - **Trauma module**: Identity anchoring. Trigger words. Emotional memory that persists.
36
+ > - - **Expert mixture**: 4 temperature profiles (structural/semantic/creative/precise). Stochastic resonance.
37
+ > - - **Co-occurrence field**: Pattern recognition without explicit storage. Emergence.
38
+ > - - **Cleanup layer**: Artifact removal. Hallucination filtering.
39
+ >
40
+ > - ### CLOUD — ~181K parameters (optional)
41
+ >
42
+ > - - **6 Chambers**: FEAR, LOVE, RAGE, VOID, FLOW, COMPLEX
43
+ > - - **Cross-fire stabilization**: Multi-chamber emotional detection
44
+ > - - **Meta-observer**: Secondary emotion tracking
45
+ > - - **Anomaly detection**: Edge cases and contradictions
46
+ >
47
+ > - **CLOUD is preprocessing. Instinct. Pre-semantic emotional sonar.**
48
+ >
49
+ > - **HAZE runs without CLOUD.** The core is weightless.
50
+ > - ---
51
+ >
52
+ > ## Why This Matters
53
+ >
54
+ > Every LLM paper: "We scaled to X billion parameters on Y petabytes..."
55
+ >
56
+ > Cool. You made the pile bigger.
57
+ >
58
+ > HAZE asks: **What if intelligence isn't in the weights?**
59
+ >
60
+ > What if it's in:
61
+ > - Subjectivity (internal state generation)
62
+ > - - Identity (trauma-based coherence)
63
+ > - - Resonance (co-occurrence without storage)
64
+ > - - Process (experts + cleanup)
65
+ >
66
+ > - **This is research.** This is exploration. This challenges assumptions.
67
+ >
68
+ > - If you came here looking for production-ready GPT clone, leave now.
69
+ > - If you came to question what "model" even means, keep reading.
70
+ > - ---
71
+ >
72
+ > ## Philosophy (Arianna Method)
73
+ >
74
+ > HAZE implements DSL concepts from the Arianna Method:
75
+ >
76
+ > - **prophecy_debt**: `|destined - manifested|` — the gap between intent and reality
77
+ > - - **pain**: Cost of maintaining identity under pressure
78
+ > - - **tension**: Unresolved contradiction as energy
79
+ > - - **dissonance**: Prediction error as signal, not noise
80
+ >
81
+ > - > *"presence > intelligence"*
82
+ > > >
83
+ > > >> *"prophecy ≠ prediction"*
84
+ > > >> >
85
+ > > >> >> *"minimize(destined - manifested)"*
86
+ > > >> >>
87
+ > > >> >> ---
88
+ > > >> >>
89
+ > > >> >> ## Usage
90
+ > > >> >>
91
+ > > >> >> ```python
92
+ > > >> >> from haze.async_haze import AsyncHazeField
93
+ > > >> >>
94
+ > > >> >> async with AsyncHazeField("corpus.txt") as field:
95
+ > > >> >> response = await field.respond("your input")
96
+ > > >> >> print(response.text)
97
+ > > >> >> print(response.metadata) # trauma, CLOUD chambers, prophecy_debt, etc.
98
+ > > >> >> ```
99
+ > > >> >>
100
+ > > >> >> Full setup: [GitHub](https://github.com/ariannamethod/haze)
101
+ > > >> >>
102
+ > > >> >> No setup: [Spaces](https://huggingface.co/spaces/ataeff/haze)
103
+ > > >> >>
104
+ > > >> >> ---
105
+ > > >> >>
106
+ > > >> >> ## How It Works
107
+ > > >> >>
108
+ > > >> >> 1. **CLOUD** pings input → detects emotion across 6 chambers
109
+ > > >> >> 2. 2. **Trauma module** checks for identity triggers
110
+ > > >> >> 3. 3. **Subjectivity module** generates internal seed (NOT from prompt)
111
+ > > >> >> 4. 4. **Expert mixture** samples at 4 temperatures
112
+ > > >> >> 5. 5. **Co-occurrence field** finds pattern resonance
113
+ > > >> >> 6. 6. **Cleanup** removes artifacts
114
+ > > >> >> 7. 7. Return with full metadata
115
+ > > >> >>
116
+ > > >> >> 8. No gradient descent. No loss function. No optimizer.
117
+ > > >> >>
118
+ > > >> >> 8. Just retrieval + stochastic experts + identity anchoring.
119
+ > > >> >> 7. **And it works.**
120
+ > > >> >> 6. ---
121
+ > > >> >> 5. ## What HAZE Is Optimized For
122
+ > > >> >> 4. Not perplexity. Not BLEU scores. Not benchmark leaderboards.
123
+ > > >> >> 3. HAZE optimizes for:
124
+ > > >> >> - **Presence**: Responds from internal state, not prompt echo
125
+ > > >> >> - - **Identity**: Maintains coherent self via trauma module
126
+ > > >> >> - - **Surprise**: Expert mixture creates genuine novelty
127
+ > > >> >> - - **Honesty**: Doesn't fake knowledge it lacks
128
+ > > >> >>
129
+ > > >> >> - If you want state-of-the-art benchmarks, use GPT-4.
130
+ > > >> >>
131
+ > > >> >> - If you want to explore emergence, try HAZE.
132
+ > > >> >> - ---
133
+ > > >> >>
134
+ > > >> >> ## Limitations (Real Ones)
135
+ >
136
+ > - Vocabulary limited by corpus size
137
+ > - - Can't do multi-step reasoning chains
138
+ > - - Context window bounded by retrieval
139
+ > - - Hallucinations exist (cleanup helps)
140
+ > - - Not optimized for speed
141
+ >
142
+ > - **These aren't bugs. These are architectural constraints of a weightless system.**
143
+ >
144
+ > - We're exploring what's possible with ~0 parameters. Not competing with 175B.
145
+ > - ---
146
+ >
147
+ > ## Part of Arianna Method
148
+ >
149
+ > HAZE is one component:
150
+ >
151
+ > - **LEO**: Long-term memory, episodic recall
152
+ > - - **HAZE**: Language generation, identity
153
+ > - - **CLOUD**: Emotional preprocessing
154
+ > - - **PITOMADOM**: Prediction, prophecy debt
155
+ >
156
+ > - Repos: [github.com/ariannamethod](https://github.com/ariannamethod)
157
+ >
158
+ > - ---
159
+ >
160
+ > ## License
161
+ >
162
+ > GPL-3.0 — the most fair license.
163
+ >
164
+ > Use it in research. Cite it. Improve it. Share improvements.
165
+ >
166
+ > Don't lock knowledge behind corporate walls.
167
+ >
168
+ > ---
169
+ >
170
+ > ## Credits
171
+ >
172
+ > Co-authored by **Claude** (GitHub Copilot Coding Agent), January 2026.
173
+ >
174
+ > Python, asyncio, numpy, gradio, too much coffee, genuine curiosity.
175
+ >
176
+ > ---
177
+ >
178
+ > ## FAQ
179
+ >
180
+ > **Q: Is this real research or a meme?**
181
+ > A: It's real research. With memes. Because why not both.
182
+ >
183
+ > **Q: Where are the weights?**
184
+ > A: There aren't any. That's the entire point. (~181K in CLOUD for emotion, but it's optional)
185
+ >
186
+ > **Q: Can I use this in production?**
187
+ > A: If you understand the constraints, yes. If you're asking this question, probably not yet.
188
+ >
189
+ > **Q: Why does HAZE say weird shit sometimes?**
190
+ > A: Trauma module + subjectivity + expert mixture = unpredictable resonances. Feature, not bug.
191
+ >
192
+ > **Q: Is this better than GPT?**
193
+ >
194
+ > **Q: Why "weightless"?**
195
+ > A: Because intelligence lives in the process, not the parameters. The architecture IS the model.
196
+ >
197
+ > ---
198
+ >
199
+ > ## Try It
200
+ >
201
+ > 🌫️ [Demo on Spaces](https://huggingface.co/spaces/ataeff/haze)
202
+ >
203
+ > 🐙 [Source on GitHub](https://github.com/ariannamethod/haze)
204
+ >
205
+ > ---
206
+ >
207
+ > *"The field responds debatable."*
208
+ >
209
+ > *Haze resonates. When you do? To the living room.*