(path: Path, header_size: int, info: dict)
| 97 | return None |
| 98 | |
| 99 | |
| 100 | def is_norm_tensor(gguf_name: str) -> bool: |
| 101 | return ( |
| 102 | gguf_name.endswith("_norm.weight") or |
| 103 | gguf_name == "output_norm.weight" or |
| 104 | gguf_name == "dflash.hidden_norm.weight" |
| 105 | ) |
| 106 |