OverviewHistoryStatsSecurity
npx skills add ...
Documentation
SKILL.md
npx skills add langchain-ai/deepagents --skill cuml-machine-learning
Use for GPU-accelerated machine learning on tabular data using NVIDIA cuML. Triggers when tasks involve classification, regression, clustering, dimensionality reduction, or model training on datasets.
npx skills add langchain-ai/deepagents --skill cuml-machine-learning
GPU-accelerated machine learning using NVIDIA RAPIDS cuML. cuML provides a scikit-learn-compatible API that runs on NVIDIA GPUs, enabling massive speedups on large datasets.
Use this skill when:
Always start every script with this boilerplate. It tests actual GPU ML operations.
X.astype("float32")| Issue | Fix |
|---|---|
TypeError: sparse input | Convert to dense: X.toarray() or don't use sparse |
PCA solver='randomized' fails | Use solver='full' or omit (cuML auto-selects) |
| UMAP not available on CPU | Skip UMAP in CPU mode or pip install umap-learn |
| Float64 slower than float32 | Cast to float32: X.astype("float32") |
| Large dataset OOM | Reduce features or sample data before fitting |
When reporting ML results: