Skip to content

Commit d4abd32

Browse files
committed
fix(ci): bump model cache version to pick up lora_config.json
The LoRA intent classifier model was missing lora_config.json due to timing issue during initial download. Bumping cache version from v1 to v2 forces re-download of all models with the corrected configuration. This fixes the 40% accuracy drop (empty predictions) by ensuring the LoRA auto-detection logic finds lora_config.json and properly identifies the model type. Signed-off-by: Yossi Ovadia <[email protected]>
1 parent fca4946 commit d4abd32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test-and-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ jobs:
6262
with:
6363
path: |
6464
models/
65-
key: ${{ runner.os }}-models-v1-${{ hashFiles('tools/make/models.mk') }}
65+
key: ${{ runner.os }}-models-v2-${{ hashFiles('tools/make/models.mk') }}
6666
restore-keys: |
67-
${{ runner.os }}-models-v1-
67+
${{ runner.os }}-models-v2-
6868
continue-on-error: true # Don't fail the job if caching fails
6969

7070
- name: Check go mod tidy

0 commit comments

Comments
 (0)