Skip to content
Snippets Groups Projects
Commit a4b902cd authored by Leonard Wayne Hackel's avatar Leonard Wayne Hackel
Browse files

adding dl worker param

parent 4674bb1f
No related branches found
No related tags found
No related merge requests found
......@@ -147,7 +147,8 @@ def main(
batch_size: int = 32,
seed: int = 42,
data_dir: str = None,
test_run: bool = False
test_run: bool = False,
num_workers_dataloader: int = 4
):
if test_run:
max_img_index = 10 * batch_size
......@@ -212,7 +213,7 @@ def main(
dm = BENDataModule(
data_dir=resolve_ben_data_dir(data_dir=data_dir),
img_size=(channels, img_size, img_size),
num_workers_dataloader=4,
num_workers_dataloader=num_workers_dataloader,
batch_size=batch_size,
max_img_idx=max_img_index,
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment