Skip to content
This repository was archived by the owner on Mar 4, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/train.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
echo "## Metrics: Workspace vs. Main"
dvc metrics diff --show-md master > report.md


# Add figure to the report
echo "## Validating results by region" >> report.md

cml-publish by_region.png --md >> report.md
cml-send-comment report.md
2 changes: 1 addition & 1 deletion train.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
X = imp.transform(X)


# Linear model
# Linear model
clf = QuadraticDiscriminantAnalysis()
yhat = cross_val_predict(clf, X, y, cv=5)

Expand Down