Skip to main content
Run any Skill in Manus
with one click
GitHub repository

agent-ml-skills

agent-ml-skills contains 15 collected skills from param087, with repository-level occupation coverage and site-owned skill detail pages.

skills collected
15
Stars
6
updated
2026-06-06
Forks
0
Occupation coverage
2 occupation categories · 100% classified
repository explorer

Skills in this repository

data-cleaning
data-scientists-152051

Use when preparing raw data for modeling — handling missing values, duplicates, inconsistent types, outliers, and bad categorical values. Emphasizes fitting all imputation on train-only to avoid leakage.

2026-06-06
experiment-tracking
data-scientists-152051

Use when running ML experiments that need to be compared, reproduced, or shared. Covers MLflow/Weights & Biases logging, what to track, run organization, and model registry basics.

2026-06-06
exploratory-data-analysis
data-scientists-152051

Use when starting on a new dataset, before modeling, or when asked to "explore", "profile", "understand", or "summarize" data. Covers structured EDA, distributions, correlations, target leakage checks, and visualization.

2026-06-06
feature-engineering
data-scientists-152051

Use when creating, encoding, scaling, or selecting features for ML models. Covers categorical encoding, numeric transforms, datetime/text/aggregation features, and leakage-safe target encoding.

2026-06-06
hyperparameter-tuning
data-scientists-152051

Use when optimizing model hyperparameters. Covers search strategy (random vs Bayesian/Optuna), leakage-safe tuning inside CV, search-space design, early stopping, and budget management.

2026-06-06
imbalanced-data
data-scientists-152051

Use when the target is rare (fraud, churn, disease, anomalies). Covers correct metrics, resampling (SMOTE/undersampling), class weights, threshold tuning, and avoiding the accuracy trap and resampling leakage.

2026-06-06
llm-finetuning
software-developers

Use when fine-tuning a large language model. Covers choosing full vs LoRA/QLoRA, dataset formatting, the transformers/PEFT/TRL stack, key hyperparameters, and evaluating fine-tunes without overfitting.

2026-06-06
ml-debugging
data-scientists-152051

Use when a model won't learn, loss is NaN, metrics look too good/bad, or training is unstable. Provides a systematic decision tree for diagnosing data, optimization, and generalization failures.

2026-06-06
model-evaluation
data-scientists-152051

Use when choosing metrics, validating models, or interpreting results. Covers metric selection by problem type, cross-validation strategy, calibration, confusion-matrix analysis, and avoiding misleading scores.

2026-06-06
model-serving
software-developers

Use when deploying a trained model behind an API. Covers FastAPI inference services, loading artifacts safely, request validation, batching, ONNX/quantization for speed, health checks, and monitoring.

2026-06-06
pandas-patterns
software-developers

Use when writing or reviewing pandas code. Covers idiomatic, vectorized, memory-efficient patterns; avoiding SettingWithCopyWarning, chained indexing, and slow apply loops.

2026-06-06
pytorch-training-loop
software-developers

Use when writing or reviewing a PyTorch training loop. Covers correct train/eval modes, gradient handling, mixed precision, checkpointing, reproducibility, and device management.

2026-06-06
rag-pipeline
software-developers

Use when building retrieval-augmented generation. Covers chunking strategy, embedding choice, vector stores, hybrid + reranking retrieval, prompt assembly, and evaluating retrieval and answer quality.

2026-06-06
reproducible-ml
software-developers

Use when an ML result must be reproducible — fixing seeds, pinning environments, versioning data, and structuring projects so runs can be exactly recreated. Covers determinism gotchas across NumPy, PyTorch, and CUDA.

2026-06-06
sklearn-pipelines
software-developers

Use when building scikit-learn models that must not leak preprocessing. Covers Pipeline, ColumnTransformer, custom transformers, and combining preprocessing with cross-validation correctly.

2026-06-06