What problem does it solve? Deploying a new ML model without rigorous experimentation risks shipping regressions that hurt business metrics. This Skill provides a complete framework for designing, running, and analyzing A/B tests on production ML models so deployment decisions are grounded in statistical evidence rather than intuition. ## Core Features & Use Cases - Experiment Design & Power Analysis: Calculate required sample sizes and estimated runtime using statsmodels before launching any test. - Traffic Splitting & Model Routing: Route users to champion or challenger models with deterministic hash-based sticky assignment, including shadow mode for zero-risk comparison. - Statistical Analysis & Guardrails: Run two-sample t-tests, compute confidence intervals, and block shipping when guardrail metrics like revenue or latency degrade. - Use Case: Your team trains a new recommendation model. Use this Skill to size the experiment, route 10% of users to the challenger via MLflow-loaded models, and generate a ship/rollback recommendation after 14 days. ## Quick Start Design an A/B test for my new recommendation model with a 5% CTR improvement target and 100,000 daily users, then analyze the results.