diff --git a/src/transformers/modeling_utils.py b/src/transformers/modeling_utils.py index fbcd136376c..c5925467677 100644 --- a/src/transformers/modeling_utils.py +++ b/src/transformers/modeling_utils.py @@ -2406,8 +2406,9 @@ class PreTrainedModel(nn.Module, ModuleUtilsMixin, GenerationMixin, PushToHubMix _commit_hash=commit_hash, ) if _adapter_model_path is not None and os.path.isfile(_adapter_model_path): - with open(_adapter_model_path, "r", encoding="utf-8"): + with open(_adapter_model_path, "r", encoding="utf-8") as f: _adapter_model_path = pretrained_model_name_or_path + pretrained_model_name_or_path = json.load(f)["base_model_name_or_path"] # change device_map into a map if we passed an int, a str or a torch.device if isinstance(device_map, torch.device):