Skip to content

Commit

Permalink
Skip validation in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mwaskom committed Feb 6, 2024
1 parent 9f9e131 commit 61b6a05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/prep_for_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ 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"] = 32
cfg["val_set_size"] = 0
cfg["num_epochs"] = 2
with open(config, "w") as f:
yaml.dump(cfg, f)

with open(data) as f:
data_truncated = f.readlines()[:1000]
data_truncated = f.readlines()[:500]
with open(data, "w") as f:
f.writelines(data_truncated)

Expand Down

0 comments on commit 61b6a05

Please sign in to comment.