"examples/vscode:/vscode.git/clone" did not exist on "04f4bd54ea3126185ced2ffdf26f608dcd1db30e"
Commit 8d849cfa authored by tink2123's avatar tink2123
Browse files

update logger

parent 97a3af3b
......@@ -46,7 +46,11 @@ class LMDBReader(object):
if "tps" in params:
self.ues_tps = True
if "distort" in params:
self.use_distort = params['distort']
self.use_distort = params['distort'] and params['use_gpu']
if not params['use_gpu']:
logger.info(
"Distort operation can only support in GPU. Distort will be set to False."
)
if params['mode'] == 'train':
self.batch_size = params['train_batch_size_per_card']
self.drop_last = True
......@@ -189,7 +193,11 @@ class SimpleReader(object):
if "tps" in params:
self.use_tps = True
if "distort" in params:
self.use_distort = params['distort']
self.use_distort = params['distort'] and params['use_gpu']
if not params['use_gpu']:
logger.info(
"Distort operation can only support in GPU.Distort will be set to False."
)
if params['mode'] == 'train':
self.batch_size = params['train_batch_size_per_card']
self.drop_last = True
......
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