From e291a103698def30f3f85ff2a1a7d329c7e715f3 Mon Sep 17 00:00:00 2001 From: David Thrower Date: Wed, 20 May 2026 01:16:41 -0400 Subject: [PATCH 1/4] Add grad_buffer_ratio parameter to training function --- train-with-dataset-cicd-test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/train-with-dataset-cicd-test.py b/train-with-dataset-cicd-test.py index 247b7bf..31dcfb1 100644 --- a/train-with-dataset-cicd-test.py +++ b/train-with-dataset-cicd-test.py @@ -82,6 +82,7 @@ def build_cfg(vocab_size): epochs=N_EPOCHS, warmup_steps=50, grad_clip=1.0, + grad_buffer_ratio=0.0 ) From 3ca642064ecbb7f49091ef7d24842682fed34a9d Mon Sep 17 00:00:00 2001 From: David Thrower Date: Wed, 20 May 2026 01:17:38 -0400 Subject: [PATCH 2/4] Disable smoke and demo tests in python-app.yml Comment out smoke test and demo run steps in CI workflow --- .github/workflows/python-app.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 3ab4ca2..764f0a5 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -37,17 +37,17 @@ jobs: # - name: Test with pytest # run: | # pytest - - name: Smoke Test - run: | - python3 helix_lm/smoke_test.py - - name: Demo run - timeout-minutes: 60 - run: | - python3 quick_demo_cpu.py - - name: Demo run - Titans Memory - timeout-minutes: 60 - run: | - python3 quick_demo_cpu_titans_mem.py + # - name: Smoke Test + # run: | + # python3 helix_lm/smoke_test.py + # - name: Demo run + # timeout-minutes: 60 + # run: | + # python3 quick_demo_cpu.py + # - name: Demo run - Titans Memory + # timeout-minutes: 60 + # run: | + # python3 quick_demo_cpu_titans_mem.py - name: Smoke Test Training with Datasets timeout-minutes: 90 run: | From e35c800cb0f6eaaf7c1f17623ea2d0fbd58f8152 Mon Sep 17 00:00:00 2001 From: David Thrower Date: Wed, 20 May 2026 01:42:51 -0400 Subject: [PATCH 3/4] Uncomment test and demo steps in workflow --- .github/workflows/python-app.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 764f0a5..2b5f091 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -34,20 +34,20 @@ jobs: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - # - name: Test with pytest - # run: | - # pytest - # - name: Smoke Test - # run: | - # python3 helix_lm/smoke_test.py - # - name: Demo run - # timeout-minutes: 60 - # run: | - # python3 quick_demo_cpu.py - # - name: Demo run - Titans Memory - # timeout-minutes: 60 - # run: | - # python3 quick_demo_cpu_titans_mem.py + - name: Test with pytest + run: | + pytest + - name: Smoke Test + run: | + python3 helix_lm/smoke_test.py + - name: Demo run + timeout-minutes: 60 + run: | + python3 quick_demo_cpu.py + - name: Demo run - Titans Memory + timeout-minutes: 60 + run: | + python3 quick_demo_cpu_titans_mem.py - name: Smoke Test Training with Datasets timeout-minutes: 90 run: | From d9a4b51b31a56d2d976054fab58bd3c330a51d01 Mon Sep 17 00:00:00 2001 From: David Thrower Date: Wed, 20 May 2026 01:46:38 -0400 Subject: [PATCH 4/4] Comment out pytest step in python-app.yml Comment out pytest testing step in workflow. --- .github/workflows/python-app.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 2b5f091..3ab4ca2 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -34,9 +34,9 @@ jobs: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - - name: Test with pytest - run: | - pytest + # - name: Test with pytest + # run: | + # pytest - name: Smoke Test run: | python3 helix_lm/smoke_test.py