Skip to content

Commit

Permalink
fix: variable to catch return from preparte data (no of data points)
Browse files Browse the repository at this point in the history
  • Loading branch information
n0w0f committed Oct 8, 2023
1 parent 75f0fe9 commit 78f7c5c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions data/tabular/qm9/transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,7 @@ def prepare_data():

if __name__ == "__main__":
print(f" Preparing clean tabular {DATASET_NAME} datatset")
prepare_data()
print(f" Finished Preparing clean tabular {DATASET_NAME} datatset")
datapoints = prepare_data()
print(
f" Finished Preparing clean tabular {DATASET_NAME} datatset with {datapoints} datapoints"
)

0 comments on commit 78f7c5c

Please sign in to comment.