Agent skill · AI & Agents

MLflow Patterns

ML experiment tracking, model registry, and deployment with MLflow for reproducible machine learning workflows.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill mlflow-patterns --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 10 KB
Bundled scripts: none
Path: skills/ai-ml/mlflow-patterns/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# MLflow Patterns ## Overview MLflow เป็น open-source platform สำหรับ managing ML lifecycle ครอบคลุม experiment tracking, model packaging, model registry, และ deployment ช่วยให้ทีม data science ทำงานร่วมกันและ deploy models ได้อย่าง reproducible ## Why This Matters - **Reproducibility**: Track experiments และ reproduce results - **Collaboration**: Share experiments และ models across team - **Deployment**: Package และ deploy models consistently - **Governance**: Model versioning และ approval workflow --- ## Core Concepts ### 1. Experiment Tracking ```python import mlflow from mlflow.tracking import MlflowClient # Set tracking URI mlflow.set_tracking_uri("http://mlflow-server:5000") mlflow.set_experiment("customer-churn-prediction") # Start run with auto-logging mlflow.sklearn.autolog() with mlflow.start_run(run_name="xgboost-v1") as run: # Log parameters mlflow.log_params({ "learning_rate": 0.1, "max_depth": 6, "n_estimators": 100, "subsample": 0.8, }) # Train model model = XGBClassifier( learning_rate=0.1, max_depth=6, n_estimators=100, subsample=0.8, ) model.fit(X_train, y_train) # Log metrics y_pred = model.predict(X_test) mlflow.log_metrics({ "accuracy": accuracy_score(y_test, y

What's inside
Steps it walks through
  1. Overview
  2. Why This Matters
  3. Core Concepts
  4. 1. Experiment Tracking
  5. 2. Custom Model Wrapper
  6. 3. Model Registry
  7. 4. Model Validation Pipeline
  8. 5. Model Serving
  9. Quick Start
  10. Production Checklist
  11. Anti-patterns
  12. Integration Points
  13. Further Reading
Ships with 1 file
  • metadata.json
Commands it runs
pip install mlflow
mlflow server --backend-store-uri sqlite:///mlflow.db \
More from claude-skill-registry
All skills →
About this skill
What does the MLflow Patterns skill do?

ML experiment tracking, model registry, and deployment with MLflow for reproducible machine learning workflows.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill mlflow-patterns --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going