From 9da8e69d06b1e49644b68bc5fd479ab84ce2b150 Mon Sep 17 00:00:00 2001 From: v1nam Date: Sat, 25 Sep 2021 13:59:31 +0530 Subject: [PATCH] change randomness weight for track 1 --- tracks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracks.py b/tracks.py index 7c7eda9..375df11 100644 --- a/tracks.py +++ b/tracks.py @@ -381,7 +381,7 @@ def generate_active_collections(self) -> Set[str]: return set( random.choices( list(self.track_collections.keys()), - weights=[0.21, 0.18, 0.18, 0.18, 0.18, 0.07], + weights=[0.18, 0.18, 0.18, 0.18, 0.18, 0.07], k=k, ) )