skills/skillxiv-v0.0.2-claude-opus-4.6/art-of-scaling-test-time/SKILL.md
Comprehensive empirical study recommending model-specific test-time scaling strategies (majority voting, first-finish search) across eight LLMs based on architectural family, problem difficulty, and compute budget rather than universal approaches.
npx skillsauth add ADu2021/skillXiv art-of-scaling-test-timeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
The Art of Scaling Test-Time Compute is an empirical study and decision framework comparing test-time scaling (TTS) strategies across eight LLMs and four reasoning datasets, generating over 30 billion tokens. The key finding is that no universal TTS strategy dominates—optimal performance depends on model family, problem difficulty, and compute budget. The authors provide a practical recipe table for strategy selection.
Two Model Categories: The study identifies distinct categories based on post-training algorithms:
This distinction is critical for strategy selection.
TTS Strategy Comparison:
Model categorization: Profile your model on a small validation set:
Strategy selection: Use decision tree:
if problem_difficulty == "easy":
use majority_voting(n_samples=3)
elif model_family == "long-horizon":
use first_finish_search(budget=large)
else: # short-horizon, hard problem
use majority_voting(n_samples=5)
Budget allocation: Allocate compute proportionally:
if compute_budget < 2x:
majority_voting(n=2)
elif compute_budget < 4x:
first_finish_search(budget=4x)
else:
first_finish_search(budget=compute_budget)
testing
Uses flow maps as look-ahead operators to enable principled reward-guided diffusion by predicting trajectory endpoints at any denoising step. Deploy when applying rewards or preferences to diffusion trajectories with meaningful gradients throughout generation.
testing
Train language models where each expert learns independently on closed datasets, enabling flexible inference with selective data inclusion or exclusion. 41% performance improvement while allowing users to opt out of specific data sources without retraining.
data-ai
Understand how token generation flexibility in diffusion LMs paradoxically constrains reasoning, as models exploit ordering flexibility to avoid uncertain tokens, and apply simplified approaches that preserve parallel decoding benefits. Use when optimizing diffusion-based language models for reasoning tasks.
devops
Enable LLM agents to improve continuously during deployment by constructing structured experience libraries through self-reflection on successes and failures—achieving 23% improvement on reasoning without gradient-based parameter updates or external training.