Upload model_index.json with huggingface_hub
Browse files- model_index.json +26 -87
model_index.json
CHANGED
|
@@ -1,97 +1,36 @@
|
|
| 1 |
{
|
|
|
|
| 2 |
"model_type": "nexus-worldmodel",
|
| 3 |
"version": "2.0",
|
| 4 |
-
"
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
"description": "NEXUS-WorldModel v2.0 - Neural World Simulator with Full Cognitive Architecture",
|
| 9 |
-
|
| 10 |
-
"features": [
|
| 11 |
-
"EARCP (Ensemble Auto-Regulated Coherence Protocol)",
|
| 12 |
-
"LPOL Memory with 9 world-specific domains",
|
| 13 |
-
"GQA (Grouped Query Attention) for efficient memory access",
|
| 14 |
-
"Neurogenesis (dynamic neuron growth)",
|
| 15 |
-
"Energy System for cognitive resource management",
|
| 16 |
-
"Dream Phase with prioritized replay",
|
| 17 |
-
"Multi-World Buffers (physical, social, abstract, temporal)",
|
| 18 |
-
"Physics Prior (Mixture Density Network)",
|
| 19 |
-
"RoPE Attention (Rotary Positional Encoding)",
|
| 20 |
-
"VAE for visual encoding/decoding"
|
| 21 |
-
],
|
| 22 |
-
|
| 23 |
-
"files": {
|
| 24 |
-
"config": "config.json",
|
| 25 |
-
"weights": "pytorch_model.bin",
|
| 26 |
-
"cognitive_state": "cognitive_state.json",
|
| 27 |
-
"training_state": "training_state.json"
|
| 28 |
-
},
|
| 29 |
-
|
| 30 |
-
"optional_files": {
|
| 31 |
-
"optimizer": "optimizer.pt",
|
| 32 |
-
"source_code": "NEXUS_WorldModel_v2.py",
|
| 33 |
-
"config_module": "nexus_worldmodel_config.py"
|
| 34 |
-
},
|
| 35 |
-
|
| 36 |
-
"load_instructions": {
|
| 37 |
-
"python": "from nexus_worldmodel_config import load_nexus_worldmodel\nfrom NEXUS_WorldModel_v2 import NexusWorldModel\n\nmodel, config, cognitive_state, warnings = load_nexus_worldmodel(\n NexusWorldModel,\n 'amewebstudio/nexus-worldmodel-v2',\n device='cuda'\n)",
|
| 38 |
-
"note": "Use strict=False to handle dynamic architecture size mismatches"
|
| 39 |
-
},
|
| 40 |
-
|
| 41 |
-
"dynamic_components": {
|
| 42 |
-
"experts": {
|
| 43 |
-
"description": "Expert count per EARCP layer can grow during training",
|
| 44 |
-
"initial": 6,
|
| 45 |
-
"max": 12,
|
| 46 |
-
"growth_trigger": "coherence < 0.3"
|
| 47 |
},
|
| 48 |
-
"
|
| 49 |
-
"
|
| 50 |
-
"initial": 64,
|
| 51 |
-
"min": 32,
|
| 52 |
-
"max": 256,
|
| 53 |
-
"birth_trigger": "coherence > 0.8",
|
| 54 |
-
"death_trigger": "usage < 0.05"
|
| 55 |
-
}
|
| 56 |
-
},
|
| 57 |
-
|
| 58 |
-
"cognitive_systems": {
|
| 59 |
-
"energy": {
|
| 60 |
-
"description": "Manages cognitive resource consumption",
|
| 61 |
-
"think_cost": 0.02,
|
| 62 |
-
"dream_cost": 0.1,
|
| 63 |
-
"regeneration": 0.05
|
| 64 |
},
|
| 65 |
-
"
|
| 66 |
-
"
|
| 67 |
-
"
|
| 68 |
-
"duration": 10
|
| 69 |
},
|
| 70 |
-
"
|
| 71 |
-
"
|
| 72 |
-
"
|
| 73 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 74 |
}
|
| 75 |
},
|
| 76 |
-
|
| 77 |
"training_info": {
|
| 78 |
-
"
|
| 79 |
-
"
|
| 80 |
-
"
|
| 81 |
-
"optimizer": "AdamW",
|
| 82 |
-
"scheduler": "CosineAnnealingLR",
|
| 83 |
-
"mixed_precision": true
|
| 84 |
-
},
|
| 85 |
-
|
| 86 |
-
"author": {
|
| 87 |
-
"name": "Mike Amega (Logo)",
|
| 88 |
-
"organization": "Ame Web Studio",
|
| 89 |
-
"email": "contact@amewebstudio.com"
|
| 90 |
-
},
|
| 91 |
-
|
| 92 |
-
"license": "Apache-2.0",
|
| 93 |
-
|
| 94 |
-
"citation": {
|
| 95 |
-
"bibtex": "@software{nexus_worldmodel_2025,\n author = {Amega, Mike},\n title = {NEXUS-WorldModel: Neural World Simulator with Cognitive Architecture},\n year = {2025},\n url = {https://huggingface.co/amewebstudio/nexus-worldmodel-v2}\n}"
|
| 96 |
}
|
| 97 |
-
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"_class_name": "NexusWorldModel",
|
| 3 |
"model_type": "nexus-worldmodel",
|
| 4 |
"version": "2.0",
|
| 5 |
+
"components": {
|
| 6 |
+
"vae_encoder": {
|
| 7 |
+
"latent_dim": 256
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
},
|
| 9 |
+
"vae_decoder": {
|
| 10 |
+
"latent_dim": 256
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
},
|
| 12 |
+
"lpol_memory": {
|
| 13 |
+
"domains": 9,
|
| 14 |
+
"use_gqa": true
|
|
|
|
| 15 |
},
|
| 16 |
+
"gqa": {
|
| 17 |
+
"num_heads": 8,
|
| 18 |
+
"num_kv_groups": 2
|
| 19 |
+
},
|
| 20 |
+
"earcp_layers": {
|
| 21 |
+
"num_layers": 8,
|
| 22 |
+
"experts": 6
|
| 23 |
+
},
|
| 24 |
+
"neurogenesis": {
|
| 25 |
+
"enabled": true
|
| 26 |
+
},
|
| 27 |
+
"physics_prior": {
|
| 28 |
+
"components": 8
|
| 29 |
}
|
| 30 |
},
|
|
|
|
| 31 |
"training_info": {
|
| 32 |
+
"epochs": 6,
|
| 33 |
+
"loss": 0.01724659317859717,
|
| 34 |
+
"neurogenesis": 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
}
|
| 36 |
+
}
|