CoolFace
Datasetpublic

Satgoy152/Muse-Glimmer-SWE-Gym-2k

Muse-Glimmer-SWE-Gym-2k Agentic coding traces from meta-models/Muse-Glimmer-30B, recorded for training a speculative-decoding drafter. 1,981 mini-swe-agent trajectories over SWE-Gym and SWE-bench-extra instances, and the 159,999 individual chat-completion calls behind them. Configs Config Rows Size What it is train 1,981 57 MB One row per trajectory: the full conversation as messages. raw 159,999 2.7 GB One row per recorded API call: request and… See the full description on the dataset page: https://huggingface.co/datasets/Satgoy152/Muse-Glimmer-SWE-Gym-2k.

sourceHugging Faceapache-2.0updated 24d agoView on Hugging Face
2likes257downloads
Dataset Card

Muse-Glimmer-SWE-Gym-2k

Agentic coding traces from meta-models/Muse-Glimmer-30B, recorded for training a speculative-decoding drafter. 1,981 mini-swe-agent trajectories over SWE-Gym and SWE-bench-extra instances, and the 159,999 individual chat-completion calls behind them.

Configs

ConfigRowsSizeWhat it is
train1,98157 MBOne row per trajectory: the full conversation as messages.
raw159,9992.7 GBOne row per recorded API call: request and response, for audit and re-rendering.
python
from datasets import load_dataset

train = load_dataset("Satgoy152/Muse-Glimmer-SWE-Gym-2k", "train", split="train")
raw   = load_dataset("Satgoy152/Muse-Glimmer-SWE-Gym-2k", "raw",   split="train")

train schema

ColumnTypeNotes
idstringTrajectory id — sha1(first_user_message)[:16]. Joins to raw.id.
reasoning_strengthstringlow / medium / high / xhigh.
messageslist<struct>role, content, reasoning_content, tool_call_id, tool_calls.
toolsstringJSON. Constant across every row: a single bash function.

The last message in messages is the assistant's final reply, so the row is a complete conversation. content is null on assistant turns that only emit tool calls.

Generation

Target modelmeta-models/Muse-Glimmer-30B
ServingvLLM 0.28.1rc1
Drafterdflash, meta-models/Muse-Glimmer-30B-assistant
num_speculative_tokens15
Prefix cachingon
Samplingtemperature 1.0, topp 0.95, topk 64
Agentmini-swe-agent, single bash tool

Effort split

LevelTrajectoriesCalls
low59342,529
medium59648,648
high59451,606
xhigh19817,216

Speculator baseline

MetricMedianMeanRange
acceptance_length4.9745.0463.862 – 9.917
draft_acceptance_rate0.2650.2700.191 – 0.594
prefix_cache_hit_rate0.9780.9750.480 – 0.994

Pooled over the run: 3,814,699 accepted of 14,579,910 drafted across 971,994 draft steps — acceptance rate 0.2616, acceptance length 4.925.

License

apache-2.0. Derived from SWE-Gym and SWE-bench-extra; upstream instance licenses apply.