# Copyright The PyTorch 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."""Deprecated utilities for LightningCLI."""importinspectfromtypesimportModuleTypefromtypingimportAny,Generator,List,Optional,Tuple,Typeimporttorchfromtorch.optimimportOptimizerimportpytorch_lightningasplimportpytorch_lightning.cliasnew_clifrompytorch_lightning.utilities.metaimportget_all_subclassesfrompytorch_lightning.utilities.rank_zeroimportrank_zero_deprecation_deprecate_registry_message=("`LightningCLI`'s registries were deprecated in v1.7 and will be removed ""in v1.9. Now any imported subclass is automatically available by name in ""`LightningCLI` without any need to explicitly register it.")_deprecate_auto_registry_message=("`LightningCLI.auto_registry` parameter was deprecated in v1.7 and will be removed ""in v1.9. Now any imported subclass is automatically available by name in ""`LightningCLI` without any need to explicitly register it.")class_Registry(dict):# Remove in v1.9def__call__(self,cls:Type,key:Optional[str]=None,override:bool=False,show_deprecation:bool=True)->Type:"""Registers a class mapped to a name. Args: cls: the class to be mapped. key: the name that identifies the provided class. override: Whether to override an existing key. """ifkeyisNone:key=cls.__name__elifnotisinstance(key,str):raiseTypeError(f"`key` must be a str, found {key}")ifkeynotinselforoverride:self[key]=clsself._deprecation(show_deprecation)returnclsdefregister_classes(self,module:ModuleType,base_cls:Type,override:bool=False,show_deprecation:bool=True)->None:"""This function is an utility to register all classes from a module."""forclsinself.get_members(module,base_cls):self(cls=cls,override=override,show_deprecation=show_deprecation)@staticmethoddefget_members(module:ModuleType,base_cls:Type)->Generator[Type,None,None]:return(clsfor_,clsininspect.getmembers(module,predicate=inspect.isclass)ifissubclass(cls,base_cls)andcls!=base_cls)@propertydefnames(self)->List[str]:"""Returns the registered names."""self._deprecation()returnlist(self.keys())@propertydefclasses(self)->Tuple[Type,...]:"""Returns the registered classes."""self._deprecation()returntuple(self.values())def__str__(self)->str:returnf"Registered objects: {self.names}"def_deprecation(self,show_deprecation:bool=True)->None:ifshow_deprecationandnotgetattr(self,"deprecation_shown",False):rank_zero_deprecation(_deprecate_registry_message)self.deprecation_shown=TrueOPTIMIZER_REGISTRY=_Registry()LR_SCHEDULER_REGISTRY=_Registry()CALLBACK_REGISTRY=_Registry()MODEL_REGISTRY=_Registry()DATAMODULE_REGISTRY=_Registry()LOGGER_REGISTRY=_Registry()def_populate_registries(subclasses:bool)->None:# Remove in v1.9ifsubclasses:rank_zero_deprecation(_deprecate_auto_registry_message)# this will register any subclasses from all loaded modules including userlandforclsinget_all_subclasses(torch.optim.Optimizer):OPTIMIZER_REGISTRY(cls,show_deprecation=False)forclsinget_all_subclasses(torch.optim.lr_scheduler._LRScheduler):LR_SCHEDULER_REGISTRY(cls,show_deprecation=False)forclsinget_all_subclasses(pl.Callback):CALLBACK_REGISTRY(cls,show_deprecation=False)forclsinget_all_subclasses(pl.LightningModule):MODEL_REGISTRY(cls,show_deprecation=False)forclsinget_all_subclasses(pl.LightningDataModule):DATAMODULE_REGISTRY(cls,show_deprecation=False)forclsinget_all_subclasses(pl.loggers.Logger):LOGGER_REGISTRY(cls,show_deprecation=False)else:# manually register torch's subclasses and our subclassesOPTIMIZER_REGISTRY.register_classes(torch.optim,Optimizer,show_deprecation=False)LR_SCHEDULER_REGISTRY.register_classes(torch.optim.lr_scheduler,torch.optim.lr_scheduler._LRScheduler,show_deprecation=False)CALLBACK_REGISTRY.register_classes(pl.callbacks,pl.Callback,show_deprecation=False)LOGGER_REGISTRY.register_classes(pl.loggers,pl.loggers.Logger,show_deprecation=False)# `ReduceLROnPlateau` does not subclass `_LRScheduler`LR_SCHEDULER_REGISTRY(cls=new_cli.ReduceLROnPlateau,show_deprecation=False)def_deprecation(cls:Type)->None:rank_zero_deprecation(f"`pytorch_lightning.utilities.cli.{cls.__name__}` has been deprecated in v1.7 and will be removed in v1.9."f" Use the equivalent class in `pytorch_lightning.cli.{cls.__name__}` instead.")
definstantiate_class(*args:Any,**kwargs:Any)->Any:rank_zero_deprecation("`pytorch_lightning.utilities.cli.instantiate_class` has been deprecated in v1.7 and will be removed in v1.9."" Use the equivalent function in `pytorch_lightning.cli.instantiate_class` instead.")returnnew_cli.instantiate_class(*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.