Skip to content

Commit

Permalink
Fix name error
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcauliffe committed Sep 26, 2016
1 parent 836d1d7 commit acb0a7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aligner/aligner/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def _do_training(self, directory, config):
stderr = logf)
est_proc.communicate()
self.parse_log_directory(log_directory, i)
if i < max_iter_inc:
if i < config.max_iter_inc:
num_gauss += inc_gauss
shutil.copy(os.path.join(directory,'{}.mdl'.format(config.num_iters)),
os.path.join(directory,'final.mdl'))
Expand Down

0 comments on commit acb0a7f

Please sign in to comment.