Source code for pytorch_lightning.utilities.apply_func
# 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."""Utilities used for collections."""fromtypingimportAnyimporttorchfromlightning_utilities.core.apply_funcimportapply_to_collectionasnew_apply_to_collectionfromlightning_utilities.core.apply_funcimportapply_to_collectionsasnew_apply_to_collectionsfromlightning_fabric.utilitiesimportmove_data_to_deviceasnew_move_data_to_devicefromlightning_fabric.utilities.apply_funcimport_from_numpyfromlightning_fabric.utilities.apply_funcimport_TransferableDataTypeasNewTransferableDataTypefromlightning_fabric.utilities.apply_funcimportconvert_to_tensorsasnew_convert_to_tensorsfrompytorch_lightning.utilitiesimportrank_zero_deprecationfrompytorch_lightning.utilities.exceptionsimportMisconfigurationExceptiondefapply_to_collection(*args:Any,**kwargs:Any)->Any:rank_zero_deprecation("`pytorch_lightning.utilities.apply_func.apply_to_collection` has been deprecated in v1.8.0 and will be"" removed in v2.0.0. Please use `lightning_utilities.core.apply_func.apply_to_collection` instead.")try:returnnew_apply_to_collection(*args,**kwargs)exceptValueErrorase:# upstream had to change the exception typeraiseMisconfigurationExceptionfromedefapply_to_collections(*args:Any,**kwargs:Any)->Any:rank_zero_deprecation("`pytorch_lightning.utilities.apply_func.apply_to_collections` has been deprecated in v1.8.0 and will be"" removed in v2.0.0. Please use `lightning_utilities.core.apply_func.apply_to_collections` instead.")try:returnnew_apply_to_collections(*args,**kwargs)exceptValueErrorase:# upstream had to change the exception typeraiseMisconfigurationExceptionfromedefconvert_to_tensors(*args:Any,**kwargs:Any)->Any:rank_zero_deprecation("`pytorch_lightning.utilities.apply_func.convert_to_tensors` has been deprecated in v1.8.0 and will be"" removed in v2.0.0. Please use `lightning_fabric.utilities.apply_func.convert_to_tensors` instead.")returnnew_convert_to_tensors(*args,**kwargs)deffrom_numpy(*args:Any,**kwargs:Any)->Any:rank_zero_deprecation("`pytorch_lightning.utilities.apply_func.from_numpy` has been deprecated in v1.8.0 and will be"" removed in v2.0.0. Please use `torch.from_numpy().to()` instead.")return_from_numpy(*args,**kwargs)defmove_data_to_device(*args:Any,**kwargs:Any)->Any:rank_zero_deprecation("`pytorch_lightning.utilities.apply_func.move_data_to_device` has been deprecated in v1.8.0 and will be"" removed in v2.0.0. Please use `lightning_fabric.utilities.apply_func.move_data_to_device` instead.")returnnew_move_data_to_device(*args,**kwargs)defto_dtype_tensor(*args:Any,**kwargs:Any)->Any:rank_zero_deprecation("`pytorch_lightning.utilities.apply_func.to_dtype_tensor` has been deprecated in v1.8.0 and will be"" removed in v2.0.0. Please use `torch.tensor` instead.")returntorch.tensor(*args,**kwargs)
[docs]classTransferableDataType(NewTransferableDataType):def__init__(self)->None:rank_zero_deprecation("`pytorch_lightning.utilities.apply_func.TransferableDataType` has been deprecated in v1.8.0 and will be"" removed in v2.0.0. This function is internal but you can copy over its implementation.")super().__init__()
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.