CI/CD cho Machine Learning
Ravi Bhadauria
Machine Learning Engineer
outsstages:
preprocess:
...
train:
...
outs:
- metrics.json
- confusion_matrix.png
metricsstages: preprocess: ... train: ... outs: - confusion_matrix.pngmetrics: - metrics.json: cache: false
-> dvc metrics showPath accuracy f1_score precision recall metrics.json 0.947 0.8656 0.988 0.7702
Thay đổi một siêu tham số và chạy lại dvc repro
-> dvc metrics diffPath Metric HEAD workspace Change metrics.json accuracy 0.947 0.9995 0.0525 metrics.json f1_score 0.8656 0.9989 0.1333 metrics.json precision 0.988 0.9993 0.0113 metrics.json recall 0.7702 0.9986 0.2284
setup-dvcsteps: ... - name: Setup DVC uses: iterative/setup-dvc@v1- name: Run DVC pipeline run: dvc repro
- name: Write CML report env: REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | # In các metric của nhánh hiện tại dvc metrics show --md >> report.md# So sánh metric với nhánh main git fetch --prune dvc metrics diff --md main >> report.md# Tạo báo cáo CML cml comment create report.md

scatter - biểu đồ phân tánlinear - biểu đồ tuyến tính tương tácsimple - biểu đồ tuyến tính tùy chỉnh, không tương tácsmooth - biểu đồ tuyến tính có làm mượtconfusion - ma trận nhầm lẫnconfusion_normalized - ma trận nhầm lẫn chuẩn hóa về khoảng <0, 1>bar_horizontal - biểu đồ thanh ngangbar_horizontal_sorted - biểu đồ thanh ngang sắp theo độ dài thanhstages: train: ... plots: - predictions.csv: # Tên file chứa dự đoán template: confusion # Kiểu biểu đồx: predicted_label # Cột trục X trong file csv y: true_label # Cột trục Y trong file csv x_label: 'Predicted label' y_label: 'True label' title: Confusion matrixcache: false # Lưu vào Git
-> dvc plots show predictions.csv
file:///path/to/index.html

-> dvc plots diff --target predictions.csv main
file:///path/to/index.html

# Thay đổi trong Python
y_proba = model.predict_proba(X_test)
fpr, tpr, _ = roc_curve(y_test,
y_proba[:, 1])
# Thay đổi trong dvc.yaml
plots:
- roc_curve.csv:
template: simple
x: fpr
y: tpr
x_label: 'False Positive Rate'
y_label: 'True Positive Rate'
title: ROC curve
cache: false

CI/CD cho Machine Learning