make e2e tests a bit faster by reducing test split size (#2522) [skip ci]

* [ci] make e2e tests a bit faster by reducing test split size

* use 10% split of alpaca dataset to speed up dataset loading/tokenization

* reduce gas 4->2 for most e2e tests

* increase val set size for packing
This commit is contained in:
Wing Lian
2025-04-12 07:24:43 -07:00
committed by GitHub
parent 51267ded04
commit de8a625dd7
24 changed files with 54 additions and 44 deletions

View File

@@ -25,7 +25,7 @@ def min_cfg(temp_dir):
],
"cut_cross_entropy": True,
"sequence_len": 1024,
"val_set_size": 0.1,
"val_set_size": 0.02,
"special_tokens": {
"pad_token": "<|endoftext|>",
},
@@ -79,7 +79,7 @@ class TestCutCrossEntropyIntegration:
],
"cut_cross_entropy": True,
"sequence_len": 1024,
"val_set_size": 0.1,
"val_set_size": 0.02,
"special_tokens": {
"pad_token": "<|endoftext|>",
},