Unverified Commit dcd2626e authored by shaohua.zhang's avatar shaohua.zhang Committed by GitHub
Browse files

The if condition is not sufficient

when you trian the det model , there is not the var: loss_type in the Global, so  train_alg_type == 'rec' is necessary
parent eca0ef34
...@@ -74,7 +74,7 @@ def main(): ...@@ -74,7 +74,7 @@ def main():
# dump mode structure # dump mode structure
if config['Global']['debug']: if config['Global']['debug']:
if 'attention' in config['Global']['loss_type']: if train_alg_type == 'rec' and 'attention' in config['Global']['loss_type']:
logger.warning('Does not suport dump attention...') logger.warning('Does not suport dump attention...')
else: else:
summary(train_program) summary(train_program)
......
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