deps: lazy import optional dependencies gguf and torchvision (#4826)

This commit is contained in:
Juwan Yoo
2025-03-27 14:35:36 -07:00
committed by GitHub
parent b39532587b
commit 188105a21b
3 changed files with 25 additions and 3 deletions

View File

@@ -22,7 +22,6 @@ from typing import (
)
import filelock
import gguf
import huggingface_hub.constants
import numpy as np
import safetensors.torch
@@ -464,6 +463,8 @@ def pt_weights_iterator(
def get_gguf_extra_tensor_names(
gguf_file: str, gguf_to_hf_name_map: Dict[str, str]
) -> List[str]:
import gguf
reader = gguf.GGUFReader(gguf_file)
expected_gguf_keys = set(gguf_to_hf_name_map.keys())
exact_gguf_keys = set([tensor.name for tensor in reader.tensors])
@@ -479,6 +480,8 @@ def gguf_quant_weights_iterator(
them to torch tensors
"""
import gguf
reader = gguf.GGUFReader(gguf_file)
for tensor in reader.tensors: