diff --git a/convert_hf_to_gguf.py b/convert_hf_to_gguf.py index b47a3d85ec..72d2f7a815 100755 --- a/convert_hf_to_gguf.py +++ b/convert_hf_to_gguf.py @@ -5416,8 +5416,7 @@ class LazyTorchTensor(gguf.LazyBase): dtype = cls._dtype_str_map[remote_tensor.dtype] shape = remote_tensor.shape meta = cls.meta_with_dtype_and_shape(dtype, shape) - func = lambda r: torch.frombuffer(r.data(), dtype=dtype).reshape(shape) - lazy = cls(meta=meta, args=(remote_tensor,), func=func) + lazy = cls(meta=meta, args=(remote_tensor,), func=lambda r: torch.frombuffer(r.data(), dtype=dtype).reshape(shape)) return cast(torch.Tensor, lazy) @classmethod