Skip to content

Commit 7530497

Browse files
author
David Thrower
authored
Merge pull request #127 from david-thrower/125-add-use-cases-gpt2-encoder-for-phishing-email-detection
125 add use cases gpt2 encoder for phishing email detection @Aidyn-Lopez (only the workflow and dependency packaging for the workflow was changed, since the PR). No changes to Cerebros package were made and the tests themselves were unaltered.
2 parents adc276a + 1488457 commit 7530497

File tree

5 files changed

+177615
-10
lines changed

5 files changed

+177615
-10
lines changed

.github/workflows/automerge.yml

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

66
on:
77
push:
8-
branches: [ "main", "109-spelling-errors-in-license" ]
8+
branches: [ "main", "125-add-use-cases-gpt2-encoder-for-phishing-email-detection" ]
99

1010
permissions:
1111
contents: read
@@ -24,6 +24,7 @@ jobs:
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+
if [ -f cicd-requirements.txt ]; then pip install -r cicd-requirements.txt; fi
2728
- name: Lint with flake8
2829
run: |
2930
# stop the build if there are Python syntax errors or undefined names
@@ -36,19 +37,19 @@ jobs:
3637
# run: python3 test_simple_cerebros_gridsearch.py
3738
# - name: Test distributed random search wine by running.
3839
# run: python3 random_search.py
39-
# - name: Test CerebrosRealNeuronNetwork
40-
# run: python3 realnn-regression-example-ames-no-preproc.py
41-
timeout-minutes: 45
40+
# - name: Test CerebrosRealNeuronNetwork
41+
# run: python3 realnn-regression-example-ames-no-preproc.py
42+
# timeout-minutes: 45
4243
- name: Test distributed random search Ames by running
4344
run: python3 regression-example-ames-no-preproc.py
4445
- name: Test distributed random search Ames by running - Val set
4546
run: python3 regression-example-ames-no-preproc-val-set.py
4647
- name: Test text classifier - random search - ham-spam
4748
run: python3 text-class-ham-or-spam.py
4849
timeout-minutes: 90
49-
# - name: Test image classifier - small subset of CIFAR10
50-
# timeout-minutes: 90
51-
# run: python3 cifar10-example.py
52-
- name: Test image classifier EfficientNetv2S - small subset of CIFAR10
53-
timeout-minutes: 240
54-
run: python3 cifar-10-efficientnetv2s.py
50+
- name: Test image classifier - small subset of CIFAR10
51+
timeout-minutes: 90
52+
run: python3 cifar10-example.py
53+
- name: Phishing email detection with GPT2 embedding
54+
timeout-minutes: 120
55+
run: python3 phishing_email_detection_gpt2.py

0 commit comments

Comments
 (0)