Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 17 additions & 13 deletions .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Python application

on:
push:
branches: [ "main", "109-spelling-errors-in-license" ]
branches: [ "main", "115-add-use-examples-regnet-fine-tuning-on-cifar-10" ]

permissions:
contents: read
Expand All @@ -24,6 +24,7 @@ jobs:
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip3 install -r cicd-requirements.txt
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand All @@ -38,17 +39,20 @@ jobs:
# run: python3 random_search.py
# - name: Test CerebrosRealNeuronNetwork
# run: python3 realnn-regression-example-ames-no-preproc.py
timeout-minutes: 45
- name: Test distributed random search Ames by running
run: python3 regression-example-ames-no-preproc.py
- name: Test distributed random search Ames by running - Val set
run: python3 regression-example-ames-no-preproc-val-set.py
- name: Test text classifier - random search - ham-spam
run: python3 text-class-ham-or-spam.py
timeout-minutes: 90
# - name: Test image classifier - small subset of CIFAR10
# timeout-minutes: 45
# - name: Test distributed random search Ames by running
# run: python3 regression-example-ames-no-preproc.py
# - name: Test distributed random search Ames by running - Val set
# run: python3 regression-example-ames-no-preproc-val-set.py
# - name: Test text classifier - random search - ham-spam
# run: python3 text-class-ham-or-spam.py
# timeout-minutes: 90
# run: python3 cifar10-example.py
- name: Test image classifier EfficientNetv2S - small subset of CIFAR10
# # - name: Test image classifier - small subset of CIFAR10
# # timeout-minutes: 90
# # run: python3 cifar10-example.py
# - name: Test image classifier EfficientNetv2S - small subset of CIFAR10
# timeout-minutes: 240
# run: python3 cifar-10-efficientnetv2s.py
- name: Test image classifier RegNet
timeout-minutes: 240
run: python3 cifar-10-efficientnetv2s.py
run: python3 cifar_10_RegNet.py
2 changes: 2 additions & 0 deletions cicd-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
tensorflow-datasets==4.9.3
gmpy2==2.1.5
Loading