Hi here, I just want to know for the following code is r_distance important?:
a2g = AtomsToGraphs(
max_neigh=50,
radius=6,
r_energy=True, # False for test data
r_forces=True, # False for test data
r_distances=False,
r_fixed=True,
)
Since when I read the original paper of dimenet and so on, they usually will utilize the edge_distance as a feature and transform it with some functions. In OC is these features important so we need to actually make r_distances = True when preprocess data?