Skip to content

Commit 39dfd84

Browse files
committed
set backbone size to larger value if total seq count it lower than 30K
1 parent 4233549 commit 39dfd84

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

cpu/tree_generation.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -641,6 +641,8 @@ int main(int argc, char **argv)
641641

642642
int totalNumSequences = numSequences;
643643
int backboneSize = numSequences / 100;
644+
if (numSequences < 40000)
645+
backboneSize = numSequences / 4;
644646
params.batchSize = backboneSize;
645647
params.backboneSize = backboneSize;
646648

0 commit comments

Comments
 (0)