Skip to content

Commit

Permalink
modify forest depth
Browse files Browse the repository at this point in the history
  • Loading branch information
yikai28 committed Jan 22, 2024
1 parent 56de3ef commit c17b019
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions .github/workflows/cml.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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
cml comment create report.md
2 changes: 1 addition & 1 deletion train.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
y_test = np.genfromtxt("data/test_labels.csv")

# Fit a model
depth = 2
depth = 5
clf = RandomForestClassifier(max_depth=depth)
clf.fit(X_train, y_train)

Expand Down

0 comments on commit c17b019

Please sign in to comment.