This pull request addresses a minor but crucial update in the training_data.py file. The load_molecules function previously took an argument named batch, which could be misleading and did not accurately describe the expected input. I have refactored the argument name to data, which aligns with the typical naming conventions used within the codebase and accurately represents the input as the data to be processed, which solves the error due wrong argument name.
Description:
This pull request addresses a minor but crucial update in the training_data.py file. The load_molecules function previously took an argument named batch, which could be misleading and did not accurately describe the expected input. I have refactored the argument name to data, which aligns with the typical naming conventions used within the codebase and accurately represents the input as the data to be processed, which solves the error due wrong argument name.