Increase max segments from 8 to 32

This commit is contained in:
Ajay Ramachandran
2020-11-23 12:29:57 -05:00
committed by GitHub
parent 69e7b35abb
commit 97bb7b534a

View File

@@ -134,7 +134,7 @@ function chooseSegments(segments) {
});
//if there are too many groups, find the best 8
return getWeightedRandomChoice(similarSegmentsGroups, 8).map(
return getWeightedRandomChoice(similarSegmentsGroups, 32).map(
//randomly choose 1 good segment per group and return them
group => getWeightedRandomChoice(group.segments, 1)[0]
);