Evangelinejy's picture
model_200m_0.27B card
5374cd3 verified
|
Raw
History Blame Contribute Delete
1.36 kB
metadata
license: apache-2.0
tags:
  - chess
  - reinforcement-learning
  - grpo

model_200m_0.27B — RL (GRPO) checkpoints

RL post-training trajectory for the chess pre-to-post compute-allocation study. The pretraining base and SFT init for this model are model_200m_0.27B and model_200m_0.27B.

parameters 200m
pretraining tokens 266,741,981 (0.267B)
checkpoints here 10 (steps 100–1000)
checkpoints saved by the run 20

Steps

100, 200, 300, 400, 500, 600, 700, 800, 900, 1000

Loading

Each global_step_N/ folder is self-contained. The models use a custom tokenizer (tokenizer.py), and the remote-code resolver ignores subfolder=, so download the folder first and load the local path:

from huggingface_hub import snapshot_download
from transformers import AutoModelForCausalLM, AutoTokenizer

step = "global_step_1000"
p = snapshot_download("Pre2Post-Chess-RL/Chess-RL-Models", allow_patterns=f"model_200m_0.27B/{step}/*") + f"/model_200m_0.27B/{step}"
model = AutoModelForCausalLM.from_pretrained(p, trust_remote_code=True)
tok = AutoTokenizer.from_pretrained(p, trust_remote_code=True)