Views
No views yet
| Component | Description |
|---|---|
| EARCP Module | Sparse Compression + Gated Integration |
| LPOL Memory | 9 domains with GQA |
| GQA | 8 heads, 2 KV groups (75% savings) |
| EARCP Layers | 8 layers × 6 experts |
| Neurogenesis | Dynamic growth (32-256 neurons) |
| Physics Prior | MDN with 8 components |
| Metric | Value |
|---|---|
| Epochs | 6 |
| Final Loss | 0.0172 |
| Coherence | ~0.42 |
| Neurogenesis Events | 0 |
| Parameters | 227,991,690 |
1import torch
2from huggingface_hub import hf_hub_download
3
4# Download and load
5model_path = hf_hub_download(repo_id="amewebstudio/nexus-worldmodel-v2", filename="nexus_worldmodel_v2.pt")
6checkpoint = torch.load(model_path, map_location="cuda")
7
8config = checkpoint['config']
9state_dict = checkpoint['model']
10
11print(f"Epochs: {checkpoint['epochs']}")
12print(f"Loss: {checkpoint['loss']:.4f}")| File | Description |
|---|---|
nexus_worldmodel_v2.pt | Full checkpoint |
pytorch_model.bin | Weights only |
config.json | Model configuration |
cognitive_state.json | Dynamic cognitive state |
configuration_nexus_worldmodel.py | Config class |
model_index.json | Component index |
strict=False to handle potential size mismatches:model.load_state_dict(state_dict, strict=False)1{
2 "d_model": 512,
3 "n_layers": 8,
4 "latent_dim": 256,
5 "use_gqa": true,
6 "gqa_num_kv_groups": 2,
7 "neurogenesis_enabled": true
8}