minux302
Results
2
comments of
minux302
Thank you for detail explanation!! What is the implementation of creating a seed with a system clock (not using a fixed seed)? This is the implementation image. Is it correct?...
Thanks! I want to, and will fix interface like below. ```python class _TFDSReader: def __init__(self, dataset, local_rank, shuffle_seed=None): tf_dataset = dataset.tf_dataset.shuffle(1024, seed=shuffle_seed).repeat() ```