Skip to content

Commit dffa62c

Browse files
Try more agressive hmm cost thresolds
1 parent c7970e0 commit dffa62c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

sc2ts/inference.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -404,9 +404,10 @@ def match_samples(
404404
):
405405
# First pass, compute the matches at precision=0.
406406
run_batch = samples
407-
408-
# WIP
409-
for precision, cost_threshold in [(0, 0), (1, 1)]: # , (2, 2)]:
407+
408+
# Values based on https://github.com/jeromekelleher/sc2ts/issues/242,
409+
# but somewhat arbitrary.
410+
for precision, cost_threshold in [(0, 1), (1, 2), (2, 3)]:
410411
logger.info(f"Running batch of {len(run_batch)} at p={precision}")
411412
match_tsinfer(
412413
samples=run_batch,

0 commit comments

Comments
 (0)