restructure: proper project layout, README, kill training

- cuda/ — main LBM kernel (khra_gixx_1024_v5.cu)
- navigator/ — lattice_observer, golden_weave, bridges, mock daemon
- scripts/ — compile, start, launch, setup (paths updated)
- docs/ — system manual
- archive/ — everything else (old kernels, inquiries, experiments)
- README.md — full setup guide: requirements, quick start, use your own LLM
- removed training/ entirely (broken LoRA scripts + datasets)
- .gitignore: exclude build/ logs/ training/ *.jsonl
This commit is contained in:
Scruff AI
2026-03-24 12:58:19 +07:00
parent 57f6d86a65
commit 56c71c87b2
411 changed files with 235 additions and 2023 deletions
+41
View File
@@ -0,0 +1,41 @@
import json
data = json.load(open(r"D:\fractal-brain\beast-build\somatic_dialogue_beast.json", encoding="utf-8"))
# Entry 10 - shift_protocol
e = data[10]
print("=== SHIFT PROTOCOL (entry 10) ===")
for k, v in e.items():
val = str(v)
if len(val) > 300:
val = val[:300] + "..."
print(f" {k}: {val}")
print()
# Entry 11 - turing_probe
e = data[11]
print("=== TURING PROBE (entry 11) ===")
for k, v in e.items():
val = str(v)
if len(val) > 300:
val = val[:300] + "..."
print(f" {k}: {val}")
print()
# Now check entries 6 (first_unfolding) - key data
e = data[6]
print("=== FIRST UNFOLDING (entry 6) ===")
if "messy_data" in e:
print(f" messy_data: {str(e['messy_data'])[:500]}")
print()
# Entry 9 - first_flight
e = data[9]
print("=== FIRST FLIGHT (entry 9) ===")
for k, v in e.items():
val = str(v)
if len(val) > 400:
val = val[:400] + "..."
print(f" {k}: {val}")