CoolFace
Modelpublic

xlr8harder/talkie-1930-13b-yarn-32k-step1000-tf

sourceHugging Faceapache-2.0updated 3mo agoView on Hugging Face
0likes49downloads
Model Card

Talkie 1930 13B YaRN 32k Step1000

This is the final step1000 checkpoint from the 2k-start Talkie YaRN 32k run. The recommended checkpoint from this run is the earlier step500 export: `xlr8harder/talkie-1930-13b-yarn-32k-tf`.

The model uses a 16x YaRN extension from the 2,048-token reference config and was continued-pretrained at 32,768 tokens on `xlr8harder/talkie-yarn-32k-gutenberg-pre1931-265m`. Training used BF16 FSDP on one 8xA100 80GB node, 8 FSDP ranks, one 32k sequence per GPU, cosine LR decay from 1e-5 to 1e-6, 50 warmup steps, and weight decay 0.01.

License

This checkpoint inherits the upstream Talkie model license, Apache-2.0. See `LICENSE`. The continued-pretraining corpus has separate dataset provenance and licensing documented at `xlr8harder/talkie-yarn-32k-gutenberg-pre1931-265m`.

Checkpoint Family

CheckpointRole
`talkie-1930-13b-yarn-32k-tf`Recommended 2k-start step500 checkpoint
`talkie-1930-13b-yarn-32k-step1000-tf`This checkpoint
`talkie-1930-13b-yarn-32k-from4k-step500-tf`4k-start step500 comparison checkpoint
`talkie-1930-13b-yarn-32k-from4k-step1000-tf`4k-start step1000 comparison checkpoint

Usage

This model uses custom Talkie modeling/tokenization code, so load it with trust_remote_code=True.

python
from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "xlr8harder/talkie-1930-13b-yarn-32k-step1000-tf"

tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    torch_dtype="auto",
    device_map="auto",
    trust_remote_code=True,
)

For vLLM, set --max-model-len 32768 and enable remote code.

RULER Results

Scores are aggregate RULER accuracy percentages from our harness, using 100 examples per task and greedy decoding. It is unclear how much RULER unintentionally penalizes Talkie because Talkie is intentionally limited to pre-1931 training data while some RULER tasks involve modern entities and facts; the effect is hard to quantify here, but it is likely non-zero.

Model / setup2k4k8k16k32k
Talkie YaRN 32k, 2k start, step50080.7879.5073.1570.0561.83
Talkie YaRN 32k, 2k start, step100080.3079.9473.1767.9861.83
Talkie YaRN 32k, 4k start, step50083.8080.7175.6468.8054.76
Talkie YaRN 32k, 4k start, step100084.1880.9876.1768.4555.01

Per-Task RULER Breakdown

The 2k run contains 12 benchmark groups; qa_2 exceeded the 2k context budget in this RULER setup and was excluded by the length constraint for that tier.

Task2k4k8k16k32k
Overall80.3079.9473.1767.9861.83
cwe29.7036.4027.4015.0015.20
fwe47.0055.0050.6748.0030.00
niah_multikey_1100.00100.0099.0099.0096.00
niah_multikey_2100.00100.00100.00100.0097.00
niah_multikey_388.0091.0084.0048.0020.00
niah_multiquery98.0098.2592.7592.5087.00
niah_multivalue88.2591.7566.2563.5052.25
niah_single_1100.00100.00100.00100.00100.00
niah_single_2100.00100.00100.00100.00100.00
niah_single_399.0090.0093.0068.0067.00
qa_171.0077.0064.0058.0052.00
qa_2n/a56.0047.0050.0048.00
vt42.6043.8027.2041.8039.40

Notes

Step1000 preserved the same 32k aggregate score as step500, but was weaker at 16k and less well rounded overall. We therefore selected step500 as the main published checkpoint.