Skip to content

Commit

Permalink
Changed persistent_workers=True to False
Browse files Browse the repository at this point in the history
  • Loading branch information
AnujaSomthankar committed Sep 19, 2024
1 parent f723632 commit 24412f6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion expts/hydra-configs/architecture/largemix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ datamodule:
args:
processed_graph_data_path: ${constants.datacache_path}
num_workers: 20 # -1 to use all
persistent_workers: True
persistent_workers: False
featurization:
atom_property_list_onehot: [atomic-number, group, period, total-valence]
atom_property_list_float: [degree, formal-charge, radical-electron, aromatic, in-ring]
Expand Down
2 changes: 1 addition & 1 deletion expts/hydra-configs/finetuning/admet_baseline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ constants:
datamodule:
args:
batch_size_training: 32
persistent_workers: true
persistent_workers: false
num_workers: 4

trainer:
Expand Down
2 changes: 1 addition & 1 deletion expts/neurips2023_configs/base_config/large.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ datamodule:
ksteps: 16

num_workers: 32 # -1 to use all
persistent_workers: True # if use persistent worker at the start of each epoch.
persistent_workers: False # if use persistent worker at the start of each epoch.
# Using persistent_workers false might make the start of each epoch very long.


Expand Down
2 changes: 1 addition & 1 deletion expts/neurips2023_configs/base_config/large_pcba.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ datamodule:
ksteps: 16

num_workers: 32 # -1 to use all
persistent_workers: True # if use persistent worker at the start of each epoch.
persistent_workers: False # if use persistent worker at the start of each epoch.
# Using persistent_workers false might make the start of each epoch very long.


Expand Down
2 changes: 1 addition & 1 deletion expts/neurips2023_configs/base_config/large_pcqm_g25.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ datamodule:
ksteps: 16

num_workers: 32 # -1 to use all
persistent_workers: True # if use persistent worker at the start of each epoch.
persistent_workers: False # if use persistent worker at the start of each epoch.
# Using persistent_workers false might make the start of each epoch very long.


Expand Down
2 changes: 1 addition & 1 deletion expts/neurips2023_configs/base_config/large_pcqm_n4.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ datamodule:
ksteps: 16

num_workers: 32 # -1 to use all
persistent_workers: True # if use persistent worker at the start of each epoch.
persistent_workers: False # if use persistent worker at the start of each epoch.
# Using persistent_workers false might make the start of each epoch very long.


Expand Down

0 comments on commit 24412f6

Please sign in to comment.