Skip to content

Commit

Permalink
Fix printing total data size
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin Grambow committed Dec 11, 2019
1 parent 18d0a93 commit 935125a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chemprop/train/run_training.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def run_training(args: Namespace, logger: Logger = None) -> List[float]:

args.train_data_size = len(train_data)

debug(f'Total size = {len(data):,} | '
debug(f'Total size = {len(train_data) + len(val_data) + len(test_data):,} | '
f'train size = {len(train_data):,} | val size = {len(val_data):,} | test size = {len(test_data):,}')

# Initialize scaler and scale training targets by subtracting mean and dividing standard deviation (regression only)
Expand Down

0 comments on commit 935125a

Please sign in to comment.