It sets up the random seeds for the RPN model prior to model training and testing.
Specifically, this method will set up the random seeds and related configurations of multiple packages,
including
* numpy
* random
* torch
* torch.cuda
* torch.cudnn
* torch.mps
defset_random_seed(random_seed:int=0,deterministic:bool=False):""" Random seed setup method. It sets up the random seeds for the RPN model prior to model training and testing. Specifically, this method will set up the random seeds and related configurations of multiple packages, including * numpy * random * torch * torch.cuda * torch.cudnn * torch.mps Parameters ---------- random_seed: int, default = 0 The random seed to be setup. Returns ------- None This method doesn't have any return values. """torch.manual_seed(random_seed)random.seed(random_seed)np.random.seed(random_seed)iftorch.cuda.is_available():torch.cuda.manual_seed(random_seed)torch.cuda.manual_seed_all(random_seed)# if using multi-GPU.iftorch.backends.mps.is_available():torch.mps.manual_seed(random_seed)torch.backends.cudnn.deterministic=Truetorch.backends.cudnn.benchmark=Falseifdeterministic:ifnottorch.backends.mps.is_available():torch.use_deterministic_algorithms(True)os.environ['CUBLAS_WORKSPACE_CONFIG']=':4096:8'# Specific to CUDAelse:print("Warning: Deterministic algorithms disabled for MPS backend to avoid performance degradation.")