fix github workflow
This commit is contained in:
parent
58c0867cd8
commit
dc5131136e
30
.github/workflows/main.yml
vendored
30
.github/workflows/main.yml
vendored
@ -17,7 +17,7 @@ on:
|
|||||||
default: 32
|
default: 32
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
train_and_evaluate:
|
install_dependencies:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
@ -34,8 +34,34 @@ jobs:
|
|||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pandas scikit-learn tensorflow matplotlib mlflow
|
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
|
- name: Train Model
|
||||||
run: python ./github_project/create_model.py ${{ github.event.inputs.epochs }} ${{ github.event.inputs.learning_rate }} ${{ github.event.inputs.batch_size }}
|
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
|
||||||
|
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: Evaluate Model
|
- name: Evaluate Model
|
||||||
run: python ./github_project/evaluate.py ${{ github.run_number }}
|
run: python ./github_project/evaluate.py ${{ github.run_number }}
|
||||||
|
Loading…
Reference in New Issue
Block a user