Views
No views yet
| Component | Detail |
|---|---|
| Architecture | Non-transformer (Cognitive Routing) |
| Parameters | 39,718,536 (~40M) |
| Hidden Dim | 512 |
| Blocks | 6 cognitive blocks |
| Channels | 6 routing channels x 128 dim |
| FF Dim | 1024 |
| Max Seq Len | 256 |
| Tokenizer | Character-level (136 vocab) |
| Metric | Value |
|---|---|
| Steps | 50,000 |
| Batch Size | 64 |
| LR | 3e-4 (cosine) |
| Precision | FP16 AMP |
| GPU | RTX 5060 Ti 16GB |
| Final Loss | ~0.005 |
| Final PPL | ~1.01 |
1from inference import CogNetInference
2ai = CogNetInference("cognet_best.pt", "tokenizer_v3.json")
3print(ai.generate("Once upon a time"))| File | Size | Description |
|---|---|---|
| cognet_best.pt | 152MB | FP32 checkpoint |
| cognet_fp16.pt | 77MB | FP16 checkpoint |
| tokenizer_v3.json | - | Char tokenizer (136 vocab) |
| config.json | - | Model config |
| cognet_model.py | - | Architecture source |
| inference.py | - | Inference script |