diff --git a/.github/workflows/cml.yaml b/.github/workflows/cml.yaml index c1d1caf8b..c4fb1b692 100644 --- a/.github/workflows/cml.yaml +++ b/.github/workflows/cml.yaml @@ -21,5 +21,13 @@ jobs: pip install -r requirements.txt python train.py - echo "MODEL METRICS" - cat metrics.txt + echo "## MODEL METRICS" > report.md + cat metrics.txt >> report.md + + echo "## Data Viz" >> report.md + cml-publish feature_importance.png --md >> report.md + cml-publish residuals.png --md >> report.md + + cml-send-comment report.md + +