使用 DVC 進行資料版本控管入門
Ravi Bhadauria
Machine Learning Engineer
可重現:可在不同環境與時間產生相同輸出
模組化:以獨立、可測試的模組撰寫
一致性:參數有單一資訊來源

檔案需使用支援的格式
params.yaml本章使用 YAML
.yaml 或 .yml以字典指定參數
: 分隔註解以 # 開頭
資料型別:
資料結構:
縮排很重要
# Key-value pairs
a: 1
b: 1.2
c: "String value"
# Arrays
a: [1, 2.2, 3, 4.8]
b:
- 5
- "String value"
# Nested dictionaries
a:
b: "Some value"
c: "Some other value"
# Data preprocessing paramters preprocess: ... target_column: RainTomorrow categorical_features: - Location - WindGustDir - ...# Model training/evaluation paramters train_and_evaluate: rfc_params: n_estimators: 2 ...
# In model.py
def evaluate_model(model, X_test, y_test):
"""Evaluate a model on a test set and return metrics."""
y_pred = model.predict(X_test)
precision = precision_score(y_test, y_pred)
...
return { "accuracy": accuracy, "precision": precision,
"recall": recall, "f1_score": f1 }
# In entry-point code (train_and_evaluate.py)
from model import evaluate_model
metrics = evaluate_model(model, X_test, y_test)

使用 DVC 進行資料版本控管入門