← スキル一覧に戻る

ml-systems-fundamentals
by doanchienthangdev
Omega Vibecode Kit
⭐ 2🍴 1📅 2026年1月21日
SKILL.md
name: ml-systems-fundamentals description: Core ML systems concepts including ML lifecycle, system architecture, requirements, and design principles for production ML.
ML Systems Fundamentals
Foundation concepts for building production ML systems.
ML System Architecture
┌─────────────────────────────────────────────────────────────┐
│ ML SYSTEM ARCHITECTURE │
├─────────────────────────────────────────────────────────────┤
│ │
│ DATA LAYER │
│ ├── Data Collection ├── Data Storage │
│ ├── Data Processing └── Feature Store │
│ │
│ MODEL LAYER │
│ ├── Training Pipeline ├── Experiment Tracking │
│ ├── Model Registry └── Evaluation │
│ │
│ SERVING LAYER │
│ ├── Model Serving ├── Feature Serving │
│ ├── Prediction Cache └── Load Balancing │
│ │
│ MONITORING LAYER │
│ ├── Data Monitoring ├── Model Monitoring │
│ ├── System Metrics └── Alerting │
│ │
└─────────────────────────────────────────────────────────────┘
ML Lifecycle
- Problem Definition - Business goal → ML task
- Data Collection - Gather relevant data
- Data Processing - Clean, transform, validate
- Feature Engineering - Create informative features
- Model Development - Train, tune, evaluate
- Deployment - Serve predictions
- Monitoring - Track performance
- Iteration - Improve based on feedback
System Requirements
Reliability
- Handle failures gracefully
- Maintain prediction quality
- Provide consistent latency
Scalability
- Handle growing data
- Support more requests
- Enable parallel training
Maintainability
- Easy to update models
- Clear documentation
- Reproducible experiments
Adaptability
- Respond to data changes
- Support new features
- Enable quick iterations
Design Principles
# 1. Start Simple
baseline = LogisticRegression()
baseline.fit(X_train, y_train)
print(f"Baseline: {baseline.score(X_test, y_test)}")
# 2. Data Quality > Model Complexity
def validate_data(df):
assert df.isnull().sum().sum() == 0
assert df.duplicated().sum() == 0
return True
# 3. Version Everything
import mlflow
mlflow.log_param("model_version", "1.0.0")
mlflow.log_artifact("data/processed/")
# 4. Monitor Continuously
def check_drift(reference, current):
return ks_2samp(reference, current).pvalue < 0.05
Commands
/omgml:init- Initialize ML project/omgml:status- Project status
Best Practices
- Define clear success metrics
- Establish baselines early
- Invest in data quality
- Automate everything possible
- Monitor production models
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です