get rid of random module
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
import traceback
|
||||
import numpy as np
|
||||
import random
|
||||
import cv2
|
||||
|
||||
from utils import iter_utils
|
||||
@@ -58,7 +57,8 @@ class SampleGeneratorImageTemporal(SampleGeneratorBase):
|
||||
for n_batch in range(self.batch_size):
|
||||
|
||||
if len(shuffle_idxs) == 0:
|
||||
shuffle_idxs = random.sample( range(samples_sub_len), samples_sub_len )
|
||||
shuffle_idxs = [ *range(samples_sub_len) ]
|
||||
np.random.shuffle (shuffle_idxs)
|
||||
|
||||
idx = shuffle_idxs.pop()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user