2424 python -m pip install --upgrade pip
2525 pip install flake8 pytest
2626 if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
27- pip install -r cicd-requirements.txt
27+ if [ -f cicd-requirements.txt ]; then pip install -r cicd-requirements.txt; fi
2828 - name : Lint with flake8
2929 run : |
3030 # stop the build if there are Python syntax errors or undefined names
@@ -37,24 +37,22 @@ jobs:
3737# run: python3 test_simple_cerebros_gridsearch.py
3838# - name: Test distributed random search wine by running.
3939# run: python3 random_search.py
40- # - name: Test CerebrosRealNeuronNetwork
41- # run: python3 realnn-regression-example-ames-no-preproc.py
42- #
43- # timeout-minutes: 240
44- #
4540 - name : Test image classifier EfficientNetv2S - PEFT CIFAR100
4641 run : python3 cifar_100_EfficientNet.py
4742 timeout-minutes : 250
43+ # - name: Test CerebrosRealNeuronNetwork
44+ # run: python3 realnn-regression-example-ames-no-preproc.py
45+ # timeout-minutes: 45
4846 - name : Test distributed random search Ames by running
4947 run : python3 regression-example-ames-no-preproc.py
5048 - name : Test distributed random search Ames by running - Val set
5149 run : python3 regression-example-ames-no-preproc-val-set.py
5250 - name : Test text classifier - random search - ham-spam
5351 run : python3 text-class-ham-or-spam.py
5452 timeout-minutes : 90
55- # - name: Test image classifier - small subset of CIFAR10
56- # timeout-minutes: 90
57- # run: python3 cifar10-example.py
58- # - name: Test image classifier EfficientNetv2S - small subset of CIFAR10
59- # timeout-minutes: 240
60- # run: python3 cifar-10-efficientnetv2s .py
53+ - name : Test image classifier - small subset of CIFAR10
54+ timeout-minutes : 90
55+ run : python3 cifar10-example.py
56+ - name : Phishing email detection with GPT2 embedding
57+ timeout-minutes : 120
58+ run : python3 phishing_email_detection_gpt2 .py
0 commit comments