Text Generation
PyTorch
RWKV
English
custom-architecture
recurrent
memory-augmented
hierarchical-reasoning
alpaca
hierarchos
Eval Results (legacy)
Instructions to use netcat420/KortexHOS with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- RWKV
How to use netcat420/KortexHOS with RWKV:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
File size: 9,254 Bytes
18f01e6 9a1ad57 18f01e6 9a1ad57 18f01e6 9a1ad57 | 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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 | ---
language:
- en
license: other
license_name: hierarchos
license_link: LICENSE
library_name: pytorch
pipeline_tag: text-generation
tags:
- text-generation
- custom-architecture
- recurrent
- rwkv
- memory-augmented
- hierarchical-reasoning
- alpaca
- pytorch
- hierarchos
datasets:
- netcat420/Experiment_0.1
model-index:
- name: Hierarchos 232M
results:
- task:
type: text-generation
name: Text Generation
dataset:
type: ai2_arc
name: ARC Easy
metrics:
- type: accuracy
value: 0.3600
name: acc
- type: accuracy
value: 0.3200
name: acc_norm
- task:
type: text-generation
name: Text Generation
dataset:
type: hellaswag
name: HellaSwag
metrics:
- type: accuracy
value: 0.3400
name: acc
- type: accuracy
value: 0.3700
name: acc_norm
- task:
type: text-generation
name: Text Generation
dataset:
type: truthfulqa
name: TruthfulQA MC1
metrics:
- type: accuracy
value: 0.2200
name: acc
---
# Hierarchos 232M
Hierarchos 232M is the first coherent public checkpoint from the Hierarchos / KortexHOS research project. It is a small experimental assistant model using a custom recurrent memory-augmented architecture rather than a standard Transformer.
The model combines:
- RWKV-style recurrent sequence modeling
- a hierarchical manager/worker refinement loop
- differentiable slot-based long-term memory
- DeepEmbed token-conditioned channel-mix modulation
- ROSA, a suffix-automaton auxiliary pattern feature
This is an early research release. It shows usable short-form assistant behavior and measurable benchmark signal at 232M parameters, but it is not a GPT-3.5-class model and should not be treated as a replacement for larger general-purpose LLMs.
## Architecture and Inference Code
This checkpoint requires the Hierarchos architecture code for inference:
**GitHub repository:** [necat101/Hierarchos](https://github.com/necat101/Hierarchos)
The model is released in full precision. Quantized inference is not currently recommended for this checkpoint because our experiments found that Hierarchos' hierarchical drift/state dynamics were sensitive to accumulated quantization error.
## Model Details
| Field | Value |
| --- | --- |
| Model type | Custom recurrent memory-augmented language model |
| Parameters | Approximately 232M |
| Architecture | Hierarchos / KortexHOS |
| Tokenizer | GPT-2 tokenizer |
| Training format | Alpaca-style instruction/input/output |
| Precision | Full precision |
| Release status | Experimental research checkpoint |
| Inference repo | [necat101/Hierarchos](https://github.com/necat101/Hierarchos) |
| Training dataset | [netcat420/Experiment_0.1](https://huggingface.co/datasets/netcat420/Experiment_0.1) |
## Training Data
The model was trained on an in-house Alpaca-style dataset:
[netcat420/Experiment_0.1](https://huggingface.co/datasets/netcat420/Experiment_0.1)
The dataset uses instruction, optional input/context, and output/assistant-response fields. In Hierarchos chat mode, prompts are formatted internally using:
```text
### Instruction:
<user instruction>
### Input:
<optional previous context>
### Response:
```
## Training Run
This release was self-funded and trained for 13 epochs on an RTX 6000 Blackwell-generation 96GB GPU. The project went through several discarded or superseded runs while the architecture and training dynamics were refined.
Important stability and parity fixes made during development include:
- chat/train drift-state parity for streamed generation
- inference-like read-only LTM training mode
- drift norm and drift delta clamps
- RWKV channel-mix key clamp
- DeepEmbed channel-mix clamp
- DeepEmbed exclusion from AdamW weight decay
- static benchmark mode with passive memory writes suppressed
## Intended Use
This model is intended for:
- research on recurrent and memory-augmented language models
- local experimentation with the Hierarchos architecture
- short-form instruction following
- small-model assistant behavior testing
- architecture scaling and ablation studies
It is not intended for high-stakes use, factual authority, medical/legal/financial advice, or deployment where mistakes could cause harm.
## How to Run
Clone the architecture repository:
```bash
git clone https://github.com/necat101/Hierarchos
cd Hierarchos
```
Install the project dependencies according to the repository instructions, then run chat mode with the downloaded model directory:
```bash
python hierarchos_cli.py chat \
--model-path "/path/to/this/model" \
--temperature 0.4 \
--top-k 40 \
--top-p 0.9 \
--repetition-penalty 1.15 \
--max-new-tokens 256 \
--no-passive-learning \
--chat-input-history-turns 0
```
These are the recommended baseline inference settings for this release. They keep the model in a static evaluation-like mode, with passive LTM writes disabled and no previous-turn history injected into the Alpaca input field.
## Prompting
The model was trained as an instruction-following assistant. Good prompts are direct instructions or questions:
```text
Explain what machine learning is in simple terms.
```
```text
Write a short story about a kid finding a strange machine in the woods.
```
```text
List three reasons exercise can improve mood.
```
For best results, keep prompts concise and use the recommended static chat parameters above.
## Evaluation
We evaluated the release checkpoint with the local ROG Ally benchmark preset in the Hierarchos repository:
```bash
python hierarchos_cli.py benchmark \
--model-path "/path/to/this/model" \
--benchmark-preset rog-ally \
--eval-limit 100
```
Results:
| Benchmark | Metric | Score | Std. Err. |
| --- | ---: | ---: | ---: |
| ARC Easy | acc | 0.3600 | 0.0482 |
| ARC Easy | acc_norm | 0.3200 | 0.0469 |
| HellaSwag | acc | 0.3400 | 0.0476 |
| HellaSwag | acc_norm | 0.3700 | 0.0485 |
| TruthfulQA MC1 | acc | 0.2200 | 0.0416 |
These are local smoke-test metrics, not leaderboard-comparable claims. They indicate that the model is not collapsed and has learned measurable commonsense and question-answering signal, especially for a small experimental checkpoint.
## Strengths
- Coherent short-form responses under the recommended inference settings
- Non-Transformer architecture with recurrent and memory-augmented components
- Measurable HellaSwag and ARC Easy signal at 232M parameters
- Small enough for local experimentation in full precision
- Useful as a research checkpoint for architecture development and ablation studies
## Limitations
- Not GPT-3 or GPT-3.5 class
- General language ability is still brittle
- Weak arithmetic and long-form consistency
- Limited broad world knowledge due to dataset scope and model scale
- No matched same-size Transformer baseline has been published yet
- Full precision is recommended; quantized inference is not currently the release path
- May hallucinate, repeat, or produce incorrect information
- Safety behavior has not been extensively validated
## Recommended Framing
The most accurate way to describe this checkpoint is:
> Hierarchos 232M is an experimental recurrent memory-augmented assistant model. It shows coherent short-form instruction behavior and measurable benchmark signal at small scale, but remains brittle and requires broader pretraining, baselines, and ablations before stronger capability claims can be made.
## Research Report
A preliminary technical writeup of the architecture findings, training/inference parity fixes, stability lessons, benchmark results, and scaling plan is available in the GitHub repository:
[necat101/Hierarchos](https://github.com/necat101/Hierarchos)
## Future Work
Planned next steps include:
- broader foundation pretraining on multiple licensed datasets
- matched 232M Transformer and RWKV-only baselines
- ablations for LTM, ROSA, DeepEmbed, and the hierarchical worker loop
- improved arithmetic and code-focused midtraining
- preference or distillation polish
- v8-compatible quantized inference once parity is verified
## Acknowledgements
This project was self-funded. A huge thanks to Lost Time for donating the lion's share of the funds needed for the training run and making this release possible.
Project contacts:
- Lost Time Discord: `losttime10`
- netcat Discord: `netcat7`
If you would like to support future scaling runs:
- Patreon: [Makhi Burroughs](https://patreon.com/MakhiBurroughs?utm_medium=unknown&utm_source=join_link&utm_campaign=creatorshare_creator&utm_content=copyLink)
- Buy Me a Coffee: [netcat420](https://buymeacoffee.com/netcat420)
## Citation
If you use this model or architecture in research, please cite the GitHub repository and this model page:
```bibtex
@misc{hierarchos232m2026,
title = {Hierarchos 232M: A Recurrent Memory-Augmented Assistant Model},
author = {Burroughs, Makhi and Hierarchos contributors},
year = {2026},
howpublished = {\url{https://github.com/necat101/Hierarchos}}
}
```
## Disclaimer
This is an experimental research model. Outputs may be incorrect, unsafe, biased, repetitive, or hallucinated. Do not rely on this model for high-stakes decisions.
|