"tools/git@developer.sourcefind.cn:OpenDAS/openpcdet.git" did not exist on "55848d9fa47f47b0f55a04f53debefdb9bb46a7e"
Unverified Commit fade8425 authored by souravraha's avatar souravraha Committed by GitHub
Browse files

Misspelled words (#1179)

* grammatical errors
parent f221374a
...@@ -249,7 +249,7 @@ def create_custom_infos(dataset_cfg, class_names, data_path, save_path, workers= ...@@ -249,7 +249,7 @@ def create_custom_infos(dataset_cfg, class_names, data_path, save_path, workers=
) )
with open(train_filename, 'wb') as f: with open(train_filename, 'wb') as f:
pickle.dump(custom_infos_train, 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) dataset.set_split(val_split)
custom_infos_val = dataset.get_infos( custom_infos_val = dataset.get_infos(
...@@ -257,7 +257,7 @@ def create_custom_infos(dataset_cfg, class_names, data_path, save_path, workers= ...@@ -257,7 +257,7 @@ def create_custom_infos(dataset_cfg, class_names, data_path, save_path, workers=
) )
with open(val_filename, 'wb') as f: with open(val_filename, 'wb') as f:
pickle.dump(custom_infos_val, 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------------------------') print('------------------------Start create groundtruth database for data augmentation------------------------')
dataset.set_split(train_split) dataset.set_split(train_split)
......
...@@ -131,7 +131,7 @@ def eval_one_epoch(cfg, args, model, dataloader, epoch_id, logger, dist_test=Fal ...@@ -131,7 +131,7 @@ def eval_one_epoch(cfg, args, model, dataloader, epoch_id, logger, dist_test=Fal
logger.info(result_str) logger.info(result_str)
ret_dict.update(result_dict) 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.*****************') logger.info('****************Evaluation done.*****************')
return ret_dict return ret_dict
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment