Experiment by changing depth to 4 #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CML | ||
on: [push] | ||
jobs: | ||
train-and-report: | ||
runs-on: ubuntu-latest | ||
container: docker://ghcr.io/iterative/cml:0-dvc2-base1 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Train model | ||
env: | ||
REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
pip install -r requirements.txt | ||
python train.py # generate plot.png | ||
# Create CML report | ||
cat metrics.txt >> report.md | ||
echo '!(./plot.png "Confusion Matrix")' >> report.md | ||
<<<<<<< HEAD | ||
cml comment create report.md | ||
======= | ||
cml comment create report.md | ||
>>>>>>> c9c93716fd5af55e194fccb17839ace3add989cd |