-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcustom_data.yaml
28 lines (25 loc) · 1.24 KB
/
custom_data.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
_target_: schnetpack_gschnet.data.GenerativeAtomsDataModule
data_workdir: ${globals.data_workdir} # is specified in yaml-file of the experiment
placement_cutoff: ${globals.placement_cutoff}
use_covalent_radii: ${globals.use_covalent_radii}
covalent_radius_factor: ${globals.covalent_radius_factor}
num_workers: 8
datapath: ??? # path to the custom data base
batch_size: ??? # number of molecules per batch for training
num_train: ??? # number of molecules used for training
num_val: ??? # number of molecules used for validation (rest is put into test split)
transforms:
- _target_: schnetpack.transform.SubtractCenterOfMass
- _target_: schnetpack_gschnet.transform.ConditionalGSchNetNeighborList
model_cutoff: ${globals.model_cutoff}
prediction_cutoff: ${globals.prediction_cutoff}
placement_cutoff: ${globals.placement_cutoff}
use_covalent_radii: ${globals.use_covalent_radii}
covalent_radius_factor: ${globals.covalent_radius_factor}
- _target_: schnetpack_gschnet.transform.BuildAtomsTrajectory
centered: True
origin_type: ${globals.origin_type}
focus_type: ${globals.focus_type}
stop_type: ${globals.stop_type}
draw_random_samples: ${globals.draw_random_samples}
- _target_: schnetpack.transform.CastTo32