Skip to content

Commit

Permalink
Misspelled words (open-mmlab#1179)
Browse files Browse the repository at this point in the history
* grammatical errors
  • Loading branch information
souravraha authored Nov 13, 2022
1 parent f221374 commit fade842
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pcdet/datasets/custom/custom_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,15 +249,15 @@ def create_custom_infos(dataset_cfg, class_names, data_path, save_path, workers=
)
with open(train_filename, 'wb') as f:
pickle.dump(custom_infos_train, f)
print('Custom info train file is save to %s' % train_filename)
print('Custom info train file is saved to %s' % train_filename)

dataset.set_split(val_split)
custom_infos_val = dataset.get_infos(
class_names, num_workers=workers, has_label=True, num_features=num_features
)
with open(val_filename, 'wb') as f:
pickle.dump(custom_infos_val, f)
print('Custom info train file is save to %s' % val_filename)
print('Custom info train file is saved to %s' % val_filename)

print('------------------------Start create groundtruth database for data augmentation------------------------')
dataset.set_split(train_split)
Expand Down
2 changes: 1 addition & 1 deletion tools/eval_utils/eval_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def eval_one_epoch(cfg, args, model, dataloader, epoch_id, logger, dist_test=Fal
logger.info(result_str)
ret_dict.update(result_dict)

logger.info('Result is save to %s' % result_dir)
logger.info('Result is saved to %s' % result_dir)
logger.info('****************Evaluation done.*****************')
return ret_dict

Expand Down

0 comments on commit fade842

Please sign in to comment.