# Copyright The Lightning team.## Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License."""Utilities to help with reproducibility of models."""fromcontextlibimportcontextmanagerfromtypingimportAny,Generatorfromlightning_fabric.utilities.seedimport_collect_rng_states,_set_rng_statesfromlightning_fabric.utilities.seedimportpl_worker_init_functionasnew_pl_worker_init_functionfromlightning_fabric.utilities.seedimportreset_seedasnew_reset_seedfromlightning_fabric.utilities.seedimportseed_everythingasnew_seed_everythingfrompytorch_lightning.utilities.rank_zeroimportrank_zero_deprecation
[docs]@contextmanagerdefisolate_rng()->Generator[None,None,None]:"""A context manager that resets the global random state on exit to what it was before entering. It supports isolating the states for PyTorch, Numpy, and Python built-in random number generators. Example: >>> import torch >>> torch.manual_seed(1) # doctest: +ELLIPSIS <torch._C.Generator object at ...> >>> with isolate_rng(): ... [torch.rand(1) for _ in range(3)] [tensor([0.7576]), tensor([0.2793]), tensor([0.4031])] >>> torch.rand(1) tensor([0.7576]) """states=_collect_rng_states()yield_set_rng_states(states)
defseed_everything(*args:Any,**kwargs:Any)->Any:rank_zero_deprecation("`pytorch_lightning.utilities.seed.seed_everything` has been deprecated in v1.8.0 and will be"" removed in v2.0.0. Please use `lightning_fabric.utilities.seed.seed_everything` instead.")returnnew_seed_everything(*args,**kwargs)defreset_seed()->None:rank_zero_deprecation("`pytorch_lightning.utilities.seed.reset_seed` has been deprecated in v1.8.0 and will be"" removed in v2.0.0. Please use `lightning_fabric.utilities.seed.reset_seed` instead.")returnnew_reset_seed()defpl_worker_init_function(*args:Any,**kwargs:Any)->None:rank_zero_deprecation("`pytorch_lightning.utilities.seed.pl_worker_init_function` has been deprecated in v1.8.0 and will be"" removed in v2.0.0. Please use `lightning_fabric.utilities.seed.pl_worker_init_function` instead.")returnnew_pl_worker_init_function(*args,**kwargs)
To analyze traffic and optimize your experience, we serve cookies on this site. By clicking or navigating, you agree to allow our usage of cookies. Read PyTorch Lightning's Privacy Policy.