amewebstudio commited on
Commit
bbfda26
·
verified ·
1 Parent(s): 11a906a

Upload model_index.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. model_index.json +26 -87
model_index.json CHANGED
@@ -1,97 +1,36 @@
1
  {
 
2
  "model_type": "nexus-worldmodel",
3
  "version": "2.0",
4
- "architecture_type": "cognitive-dynamic",
5
- "framework": "pytorch",
6
- "library_name": "nexus-worldmodel",
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
- "neurons": {
49
- "description": "Neuron count in neurogenesis layer can change",
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
- "dream": {
66
- "description": "Memory consolidation through prioritized replay",
67
- "cycle_length": 50,
68
- "duration": 10
69
  },
70
- "memory": {
71
- "lpol_domains": 9,
72
- "episodic_slots": 256,
73
- "multi_scale": true
 
 
 
 
 
 
 
 
 
74
  }
75
  },
76
-
77
  "training_info": {
78
- "recommended_epochs": 15,
79
- "recommended_batch_size": 32,
80
- "learning_rate": 0.0001,
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
+ }