Skip to content

Commit

Permalink
revert dataset_dir changes committed in error (relates to #79)
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveOv committed Aug 2, 2024
1 parent cf59042 commit 628a40d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion make_synthetic_test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

DATASET_SIZE = 20000
RESUME = False
dataset_dir = Path("./datasets/synthetic-mist-tess-dataset-test/")
dataset_dir = Path("./datasets/synthetic-mist-tess-dataset/")
dataset_dir.mkdir(parents=True, exist_ok=True)

# TODO: better way to share inst over multiple calls to generate_instances_from_mist_models()
Expand Down
2 changes: 1 addition & 1 deletion make_training_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from ebop_maven.libs.tee import Tee

DATASET_SIZE = 250000
dataset_dir = Path(f"./datasets/formal-training-dataset-{DATASET_SIZE // 1000}k-test3/")
dataset_dir = Path(f"./datasets/formal-training-dataset-{DATASET_SIZE // 1000}k/")
dataset_dir.mkdir(parents=True, exist_ok=True)


Expand Down

0 comments on commit 628a40d

Please sign in to comment.