fix github workflow

This commit is contained in:
PawelDopierala 2024-06-06 02:23:23 +02:00
parent dc5131136e
commit 0dc2c077bc

View File

@ -17,7 +17,7 @@ on:
default: 32
jobs:
install_dependencies:
train:
runs-on: ubuntu-latest
steps:
@ -34,24 +34,11 @@ jobs:
python -m pip install --upgrade pip
pip install pandas scikit-learn tensorflow matplotlib mlflow
train_model:
needs: install_dependencies
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Train Model
run: python ./github_project/create_model.py ${{ github.event.inputs.epochs }} ${{ github.event.inputs.learning_rate }} ${{ github.event.inputs.batch_size }}
evaluate_model:
needs: install_dependencies
evaluate:
needs: train
runs-on: ubuntu-latest
steps:
@ -63,5 +50,10 @@ jobs:
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pandas scikit-learn tensorflow matplotlib mlflow
- name: Evaluate Model
run: python ./github_project/evaluate.py ${{ github.run_number }}