Views
No views yet
| File | Purpose |
|---|---|
model.safetensors | Canonical inference-only weights (113 tensors) |
config.json | Architecture and Mineproof protocol configuration |
mineproof-cgpn.pt | Optimizer-free checkpoint compatible with the Mineproof FastAPI project |
mineproof_agent/ | Minimal source snapshot required to instantiate the custom model |
inference.py | Stateless inference example |
examples/observation.json | Example Mineproof observation v2 payload |
training/ | Release training configurations |
metrics.json | Release-gate results and their scope |
SHA256SUMS | Weight-file checksums |
1python -m pip install -r requirements.txt
2python inference.py examples/observation.jsonmodel.safetensors, validates the observation graph, and prints the ranked legal reveal distribution. Production stateful inference should use the Mineproof FastAPI service with a stable session_id and stateful_policy_weight=0.1.python -m pip install "git+https://huggingface.co/kb5000/cgpn-v2.2"huggingface_hub:1from mineproof_agent.hub import CGPNHubModel, predict
2
3model = CGPNHubModel.from_pretrained(
4 "kb5000/cgpn-v2.2",
5 map_location="cpu",
6)
7result = predict(model, observation)from_pretrained downloads config.json and model.safetensors through the Hugging Face cache. This is a custom PyTorch Hub integration, not a Transformers AutoModel and not a hosted Inference Provider widget.mineproof-cgpn.pt:1[agents.cgpn-v2-global-expert]
2provider = "python"
3factory = "mineproof_agent.agents.cgpn:create_agent"
4checkpoint = "path/to/mineproof-cgpn.pt"
5use_recurrent_state = true
6stateful_policy_weight = 0.1
7mine_risk_policy_weight = 0.0mineproof-agent-observation version 2. Cells are row-major and may be open, covered, flagged, blocked_safe, or outside. The model returns a probability distribution over supplied legal reveal actions. It does not place flags or run a symbolic solver.global_budget_encoder, global_gate, and global_delta_head.global_gate_probability is an audit signal, not a calibrated probability that global reasoning is logically necessary.LICENSE and NOTICE.