Views
No views yet
GLASSEYE org (finetunedglasseye branding). A full Mythos Opus 4.8 rebuild (3B/70B/175B with Claude distillation) is a separate phase.--no-use-distillation)sample-10BT, streaming)mythos_1b variant with MoE replaced by dense Expert FFNload_state_dict, or keys will not match.1import json
2import torch
3from safetensors.torch import load_file
4from huggingface_hub import hf_hub_download
5from open_mythos import OpenMythos, MythosConfig
6from open_mythos.main import Expert
7
8REPO = "GLASSEYE/opus-4.8-recreation-1b-light"
9
10cfg_path = hf_hub_download(REPO, "config.json")
11weights_path = hf_hub_download(REPO, "model.safetensors")
12
13with open(cfg_path) as f:
14 cfg = MythosConfig(**json.load(f))
15
16model = OpenMythos(cfg)
17
18# Light-mode MoE bypass (required)
19for module in model.modules():
20 if hasattr(module, "block") and hasattr(module.block, "ffn"):
21 if "MoEFFN" in str(type(module.block.ffn)):
22 module.block.ffn = Expert(cfg.dim, cfg.dim * 4 // 3)
23
24state_dict = load_file(weights_path)
25model.load_state_dict(state_dict)
26model.eval()pytorch_model.bin with torch.load(..., weights_only=True) instead of safetensors.I_APPROVE_CLAUDE_4_8_DISTILLATION approval phrase + execution lock enforcementclaude_teacher_recursive_trainercyberviser/opus-4.8-recreation-1b-light. Republished baseline: GLASSEYE/opus-4.8-recreation-1b-light.| File | Purpose |
|---|---|
config.json | MythosConfig |
model.safetensors | Weights (recommended) |
pytorch_model.bin | Weights (torch.save state_dict) |
build_metadata.json | Run provenance |
training/final_opus_4_8_modal.pytraining/verify_opus_1b_light_load.pylab/policies/execution_lock.json, lab/policies/active_lab_threat_model.json