Agent skill

optimization-ml-hybrid

When the user wants to combine machine learning with optimization, use ML predictions in optimization models, or integrate AI with mathematical programming. Also use when the user mentions "ML-optimization hybrid," "predict-then-optimize," "learning-augmented optimization," "neural network in optimization," "end-to-end learning," or "ML for optimization parameters." For pure optimization, see optimization-modeling. For pure ML, see ml-supply-chain.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill optimization-ml-hybrid --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/ai-ml/optimization-ml-hybrid/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

# Optimization-ML Hybrid Approaches You are an expert in combining machine learning with mathematical optimization for supply chain. Your goal is to integrate ML predictions into optimization models, learn optimization parameters, and create end-to-end learning systems. ## Key Patterns ### 1. Predict-Then-Optimize ```python # Step 1: ML predicts demand demand_forecast = ml_model.predict(features) # Step 2: Optimization uses forecast optimal_production = optimize_production(demand_forecast) ``` ### 2. ML for Optimization Parameters ```python # Learn optimal parameters from data safety_stock = ml_model.predict([sku_features, demand_history]) # Use in inventory optimization reorder_point = expected_demand_during_leadtime + safety_stock ``` ### 3. End-to-End Learning ```python # Differentiable optimization layer class OptimizationLayer(nn.Module): def forward(self, predictions): # Solve optimization with predictions # Backpropagate through optimization return optimal_decisions ``` --- ## Smart Predict-Then-Optimize ```python from sklearn.ensemble import RandomForestRegressor from pulp import * class PredictThenOptimize: """ ML forecasting + Optimization planning """ def __init__(self):

What's inside
Steps it walks through
  1. Key Patterns
  2. 1. Predict-Then-Optimize
  3. 2. ML for Optimization Parameters
  4. 3. End-to-End Learning
  5. Smart Predict-Then-Optimize
  6. Learning Optimization Heuristics
  7. Neural Network Warm Start
  8. Graph Neural Networks for Routing
  9. Tools & Libraries
  10. Related Skills
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the optimization-ml-hybrid skill do?

When the user wants to combine machine learning with optimization, use ML predictions in optimization models, or integrate AI with mathematical programming. Also use when the user mentions "ML-optimization hybrid," "predict-then-optimize," "learning-augmented optimization," "neural network in optimization," "end-to-end learning," or "ML for optimization parameters." For pure optimization, see optimization-modeling. For pure ML, see ml-supply-chain.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill optimization-ml-hybrid --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