Views
No views yet

| Architecture | Conv stem -> 6 residual blocks x 96 filters -> policy head (7 logits, illegal columns masked) + value head (tanh) |
| Input | 3x6x7 planes: own stones / opponent stones / side-to-move |
| Parameters | ~1,102,248 |
| Format | model.safetensors + config.json (rebuild with az.model.create_model) |
| metric | value |
|---|---|
| Elo (MLE vs anchors) | 1626 |
| vs random agent (40 games) | 100% |
| raw policy (no search) vs random | 100% |
| vs pure MCTS, 200 sims | 100% |

1from az.model import create_model # az package: see the Space's bundled copy
2import json, torch
3from safetensors.torch import load_file
4
5model = create_model(json.load(open("config.json")))
6model.load_state_dict(load_file("model.safetensors"))kuotunyu 與 Hugging Face steven0226 為同一人。kuotunyu and Hugging Face steven0226 are the same author.