From ef7a35b2fd67a7a3b18ad35cdbe28c53ac2ef4d0 Mon Sep 17 00:00:00 2001 From: Michael Waskom Date: Tue, 6 Feb 2024 10:39:30 -0500 Subject: [PATCH] Nevermind, I guess we can't disable evals --- ci/prep_for_ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/prep_for_ci.py b/ci/prep_for_ci.py index 6e32b9b..efcf06c 100644 --- a/ci/prep_for_ci.py +++ b/ci/prep_for_ci.py @@ -10,7 +10,7 @@ def main(config: str, data: str): with open(config) as f: cfg = yaml.safe_load(f.read()) cfg["sequence_len"] = 1024 - cfg["val_set_size"] = 0 + cfg["val_set_size"] = 16 cfg["num_epochs"] = 2 with open(config, "w") as f: yaml.dump(cfg, f)