Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Commit

Permalink
Update batch_gen.py
Browse files Browse the repository at this point in the history
rel_coords: small bug fix of the reference nodes
  • Loading branch information
BenjaminFiltjens authored May 17, 2022
1 parent 761169b commit aca5841
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion batch_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

def get_features(sample):
disps = get_displacements(sample)
rel_coords = get_relative_coordinates(sample)
rel_coords = get_relative_coordinates(sample, references=(0))
sample = np.concatenate([disps, rel_coords], axis=0)
return sample

Expand Down

0 comments on commit aca5841

Please sign in to comment.