Skip to content

Commit e28d89d

Browse files
Update automerge.yml
Made a temporary workflow to optimize the hyperparams for Ames.
1 parent ac88524 commit e28d89d

File tree

1 file changed

+4
-14
lines changed

1 file changed

+4
-14
lines changed

.github/workflows/automerge.yml

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

66
on:
77
push:
8-
branches: [ "main", "180-question-leakage-potentially-causing-the-extraordinarily-low-rmse-for-ames-dataset" ]
8+
branches: [ "main", "186-hyperparameter-optimization-for-ames-housing-new-script" ]
99

1010
permissions:
1111
contents: read
@@ -26,23 +26,13 @@ jobs:
2626
python -m pip install --upgrade pip
2727
pip install flake8 pytest
2828
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
29-
if [ -f cicd-requirements.txt ]; then pip install -r cicd-requirements.txt; fi
29+
if [ -f cicd-requirements.txt ]; then pip install -r cicd-requirements.txt; fi
30+
pip install optuna==4.4.0
3031
- name: Lint with flake8
3132
run: |
3233
# stop the build if there are Python syntax errors or undefined names
3334
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
3435
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
3536
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3637
- 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
40-
# - name: Test text classifier - random search - ham-spam
41-
# run: python3 text-class-ham-or-spam.py
42-
# timeout-minutes: 90
43-
- name: Test image classifier - small subset of CIFAR10 # add back
44-
timeout-minutes: 90
45-
run: python3 cifar10-example.py
46-
- name: Phishing email detection with GPT2 embedding
47-
timeout-minutes: 420
48-
run: python3 phishing_email_detection_gpt2.py
38+
run: python3 ames-wo-val-hyperparam-optimization-local.py

0 commit comments

Comments
 (0)