Skip to content

Commit 33f63fa

Browse files
Update automerge.yml
Update automerge.yaml to include the generative proof of concept and prioritize it above the text classifier.
1 parent 921dc6d commit 33f63fa

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

.github/workflows/automerge.yml

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ name: Python application
55

66
on:
77
push:
8-
9-
branches: [ "main", "218-fix-padding-token-mismatch-and-logging-tokenization-metadata" ]
10-
8+
branches: [ "main", "226-fp-optimizations-generartive-rapid-test-from-224" ]
119

1210
permissions:
1311
contents: read
@@ -32,19 +30,24 @@ jobs:
3230
- name: Lint with flake8
3331
run: |
3432
# stop the build if there are Python syntax errors or undefined names
35-
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
33+
flake8 . --count --select=E9,F63,F7,F82 --ignore F821 --show-source --statistics
3634
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
3735
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
38-
- name: Test distributed random search Ames by running
39-
run: python3 regression-example-ames-no-preproc.py
40-
- name: Test distributed random search Ames by running - Val set
41-
run: python3 regression-example-ames-no-preproc-val-set.py
36+
# - name: Test distributed random search Ames by running
37+
# run: python3 regression-example-ames-no-preproc.py
38+
# - name: Test distributed random search Ames by running - Val set
39+
# run: python3 regression-example-ames-no-preproc-val-set.py
4240
# - name: Test text classifier - random search - ham-spam
4341
# run: python3 text-class-ham-or-spam.py
4442
# timeout-minutes: 90
45-
- name: Test image classifier - small subset of CIFAR10 # add back
46-
timeout-minutes: 90
47-
run: python3 cifar10-example.py
43+
# Add back !!!!
44+
# - name: Test image classifier - small subset of CIFAR10 # add back
45+
# timeout-minutes: 90
46+
# run: python3 cifar10-example.py
47+
#
48+
- name: Generative Proof Of Concept
49+
timeout-minutes: 180
50+
run: generative-proof-of-concept-CPU-preprocessing-in-memory.py
4851
- name: Phishing email detection with GPT2 embedding
4952
timeout-minutes: 420
5053
run: python3 phishing_email_detection_gpt2.py

0 commit comments

Comments
 (0)