Skip to content

Commit

Permalink
Update final config changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcauliffe committed Sep 26, 2016
1 parent acb0a7f commit 81310e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aligner/aligner/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def _init_tri(self, fmllr = False):
log_path = os.path.join(directory, 'log', 'build_tree.log')
with open(log_path, 'w') as logf:
subprocess.call([thirdparty_binary('build-tree')] + context_opts +
['--verbose=1', '--max-leaves={}'.format(config.num_states),
['--verbose=1', '--max-leaves={}'.format(config.initial_gauss_count),
'--cluster-thresh={}'.format(config.cluster_threshold),
treeacc_path, roots_int_path, questions_qst_path,
topo_path, tree_path], stderr = logf)
Expand All @@ -287,7 +287,7 @@ def _init_tri(self, fmllr = False):
log_path = os.path.join(directory, 'log', 'mixup.log')
with open(log_path, 'w') as logf:
subprocess.call([thirdparty_binary('gmm-mixup'),
'--mix-up={}'.format(config.num_gauss),
'--mix-up={}'.format(config.initial_gauss_count),
mdl_path, occs_path, mdl_path], stderr = logf)
os.remove(treeacc_path)

Expand Down

0 comments on commit 81310e4

Please sign in to comment.