cyberneticlibrary

Build and tune ML model training

ml-engineersubagentsetup L31
morganmuli/metaskill
What it does

Build and train ML models with evaluation, hyperparameter tuning, and deployment readiness

Best for

End-to-end model development from data to evaluation when baselines and production requirements are specified

Inputs
  • · training data (features + labels)
  • · problem type (classification/regression/clustering)
  • · performance targets
Outputs
  • · trained model (pickled or format-agnostic)
  • · evaluation metrics and cross-val results
  • · hyperparameter sweep report
  • · model card
Requires
  • · scikit-learn/xgboost/pytorch
  • · wandb/tensorboard
  • · model serving framework
Preconditions
  • · labeled data available
  • · problem type clear
  • · compute resources available
Failure modes
  • · data imbalanced or too small
  • · overfitting despite regularization
  • · model not reproducible
Trust signals
  • · uses cross-validation (not just train/test split)
  • · logs hyperparameter sweeps
  • · reports train/val/test metrics separately
  • · model card documents assumptions