gpu-readiness-assessment

gpu-readiness-assessment is a skill for Claude Code, Codex from topprismdata/cultivating-ml-agent. It costs 151 tokens per session (1,643 once invoked), scanned A, original, MIT.

A checklist for deciding whether a Kaggle machine-learning task is worth running on a graphics processor (GPU) instead of a regular processor (CPU). It considers the task type, expected benefit, and limited weekly GPU time.

In plain words
What is it for?
Use it before training, when moving from CPU to GPU, when GPU quota is running low, or when choosing between CPU-based tabular models and GPU-based neural networks.
Why use it?
It helps avoid using scarce GPU hours on tasks where CPU methods work as well or better. It also encourages checking that the data and training pipeline work before starting an expensive run.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it before training, when moving from CPU to GPU, when GPU quota is running low, or when choosing between CPU-based tabular models and GPU-based neural networks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/topprismdata/cultivating-ml-agent/gpu-readiness-assessment
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add topprismdata/cultivating-ml-agent --skill gpu-readiness-assessment
Clone the repo
git clone --depth 1 https://github.com/topprismdata/cultivating-ml-agent

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for gpu-readiness-assessment

README.md
[![agentmods](https://agentmods.dev/badge/skills/topprismdata/cultivating-ml-agent/gpu-readiness-assessment/github.svg)](https://agentmods.dev/skills/topprismdata/cultivating-ml-agent/gpu-readiness-assessment)
Your own site
<a href="https://agentmods.dev/skills/topprismdata/cultivating-ml-agent/gpu-readiness-assessment"><img src="https://agentmods.dev/badge/skills/topprismdata/cultivating-ml-agent/gpu-readiness-assessment/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for gpu-readiness-assessment

Your own site · 80×15
<a href="https://agentmods.dev/skills/topprismdata/cultivating-ml-agent/gpu-readiness-assessment"><img src="https://agentmods.dev/badge/skills/topprismdata/cultivating-ml-agent/gpu-readiness-assessment.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 151 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,643 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00151 $0.01643
Opus 5 $0.00076 $0.00822
Sonnet 5 $0.00030 $0.00329
Haiku 4.5 $0.00015 $0.00164

Measured 11d ago against content hash a2317c78ce8e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

gpu-readiness-assessment scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/examples/gpu-readiness-assessment/SKILL.md · 156 lines

How it starts

The opening of the file, as written. The whole thing — 156 lines — stays where its author put it; the contents beside it link to each section on GitHub.

GPU Readiness Assessment

Problem

GPU quota (30h/week) is the scarcest resource in Kaggle. It's shared across ALL competitions. Wrong allocation = wasted hours that block other competitions.

Common mistakes:

  • Using GPU for tabular competitions where GBDT on CPU is faster and better
  • Running AutoGluon with GPU when CPU preset gives same result in less time
  • Starting GPU training before verifying the pipeline works on CPU first
  • Spending 8h GPU on feature exploration that could be done in 30 min on CPU

The 5-Gate Assessment

Run all 5 gates in order. Stop at the first FAIL.

Gate 1: Task Type Check

Is the task inherently GPU-friendly?
  ✅ Image classification/segmentation (CNN, UNet, ViT)
  ✅ NLP/LLM inference (transformer, BERT, LLaMA)
  ✅ Large-scale deep learning (>1M parameters)
  ✅ RL training (neural network policy)
  ⚠️ Time series with deep learning (LSTM/Transformer — may not beat GBDT)
  ❌ Tabular classification/regression (GBDT dominates, GPU adds nothing)
  ❌ Rule-based agent (PTCG, Orbit Wars — pure logic, no ML)
  ❌ ONNX optimization (NeuroGolf — graph manipulation, no training)

Verdict:
  ✅ → proceed to Gate 2
  ❌ → SKIP GPU, use CPU

Gate 2: Data Size Check

Is the dataset large enough to benefit from GPU?
  >100K rows × >50 features → GPU helps for NN
  >10K images → GPU helps for CNN
  <10K rows → CPU is faster (GPU overhead > speedup)
  <1K images → CPU + transfer learning is sufficient

Kaggle-specific:
  Most Playground series (690K rows) → GBDT on CPU is optimal, GPU NOT needed
  Biohub (3D microscopy) → GPU required (UNet inference)
  ARC-AGI-3 (LLM agent) → GPU required (27B model inference)

Verdict:
  Sufficient data → proceed to Gate 3
  Insufficient data → SKIP GPU

Gate 3: Model Architecture Check

Does the best model for this task require GPU?
  Neural network (CNN/RNN/Transformer) → GPU required for training
  Pre-trained model inference (LLM, UNet) → GPU required for reasonable speed
  GBDT (LGB/XGB/CAT) → CPU only (GPU versions exist but rarely better)
  Linear/logistic regression → CPU trivially
  Rule-based heuristic → CPU trivially

Competition evidence:
  House Prices → GBDT CPU (no GPU needed, 0.11750 LB)
  s6e7 → GBDT CPU (no GPU needed, 0.94942 LB)
  Biohub → UNet GPU (mandatory for 12h inference budget)
  PTCG → Rule-based CPU (no ML training)

Verdict:
  GPU-native model → proceed to Gate 4
  CPU-native model → SKIP GPU

Read the full file on GitHub · 156 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 156 lines · 151 tokens per session scan A a2317c78ce8e

Subscribe to this mod's changes

gpu-readiness-assessment is a skill published in the GitHub repository topprismdata/cultivating-ml-agent (5 stars, last pushed 13d ago), licensed MIT. It adds 151 tokens to every session and 1,643 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

huggingface-hub

Hugging Face Hub CLI (hf) — search, download, and upload models and datasets, manage repos, query datasets with SQL, deploy inference endpoints, manage Spaces and buckets.

braxtonROSE4/zorro-agent · 43 tokens

tensorboard

Visualize training metrics, debug models with histograms, compare experiments, visualize model graphs, and profile performance with TensorBoard - Google's ML visualization toolkit.

davila7/claude-code-templates · 32 tokens

mlflow

Track ML experiments, manage model registry with versioning, deploy models to production, and reproduce experiments with MLflow - framework-agnostic ML lifecycle platform.

davila7/claude-code-templates · 33 tokens

datachain-knowledge

Use whenever datasets, cloud storage buckets, or data pipelines are mentioned — creating, saving, querying, listing, exploring, deleting, or processing data in S3, GCS, Azure Blob, or local storage. Also use when running any script that may create datasets as a side effect. Maintains a knowledge base at dc-knowledge/…

datachain-ai/datachain · 104 tokens

prompt-scanner

A scanner for text sent to an AI agent, looking for prompt injection and jailbreak attempts. Prompt injection is text that tries to override an agent's instructions; a jailbreak tries to bypass its safety limits.

alibaba/anolisa · 103 tokens

install-openviking-memory

Install and configure the OpenViking long-term memory plugin for OpenClaw via natural conversation. Once installed, the plugin automatically captures facts from chats and recalls relevant context before each reply (auto-capture + auto-recall, cross-session). Covers prerequisites, install through OpenClaw's plugin…

volcengine/OpenViking · 191 tokens