Skip to content

Commit

Permalink
modify forest depth
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnAtl committed Nov 13, 2024
1 parent 50e7855 commit ba2ef7c
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: model-training
on: [push]
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: iterative/setup-cml@v1
- name: Train model
env:
REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip install -r requirements.txt
python train.py
cat metrics.txt >> report.md
echo "![](./plot.png)" >> 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 @@ -10,7 +10,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 ba2ef7c

Please sign in to comment.