2020-09-09 04:24:20 +00:00
|
|
|
# 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.
|
2021-02-01 14:28:17 +00:00
|
|
|
from weakref import proxy
|
2020-09-09 04:24:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ModelConnector:
|
|
|
|
def __init__(self, trainer):
|
|
|
|
self.trainer = trainer
|
|
|
|
|
|
|
|
def copy_trainer_model_properties(self, model):
|
2021-02-18 14:59:54 +00:00
|
|
|
ref_model = self.trainer.lightning_module or model
|
2020-09-09 04:24:20 +00:00
|
|
|
|
|
|
|
for m in [model, ref_model]:
|
2021-02-01 14:28:17 +00:00
|
|
|
m.trainer = proxy(self.trainer)
|
2020-09-09 04:24:20 +00:00
|
|
|
m.use_amp = self.trainer.amp_backend is not None
|
|
|
|
m.precision = self.trainer.precision
|