Update train.py #27
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: your-workflow-name | |
on: [push] | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: iterative/setup-cml@v1 | |
- name: Train model | |
run: | | |
pip install -r Streamlit/requirements.txt | |
python Streamlit/train.py | |
- name: Create CML report | |
env: | |
REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
cat Streamlit/results.txt >> report.md | |
cml comment create report.md | |
# Optional: Add labels (example) | |
- name: Create labels | |
if: github.event_name == 'push' | |
run: | | |
gh label create "training 🧠" --description "Model training tasks" --color "123456" | |
gh label create "evaluation 📊" --description "Model evaluation and results" --color "654321" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Optional: Disable workflow after initial run | |
- name: Disable workflow | |
run: gh workflow disable your-workflow-name | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |