MCPcopy Create free account
hub / github.com/microsoft/BitNet / part

Method part

utils/convert-ms-to-gguf-bitnet.py:803–805  ·  view source on GitHub ↗
(self, n_part: int)

Source from the content-addressed store, hash-verified

801 return UnquantizedTensor(permute(self.ndarray[r * n_part : r * n_part + r, ...], n_head, n_head_kv))
802
803 def part(self, n_part: int) -> UnquantizedTensor:
804 r = self.ndarray.shape[0] // 3
805 return UnquantizedTensor(self.ndarray[r * n_part : r * n_part + r, ...])
806
807 def permute(self, n_head: int, n_head_kv: int) -> UnquantizedTensor:
808 return UnquantizedTensor(permute(self.ndarray, n_head, n_head_kv))

Callers

nothing calls this directly

Calls 1

UnquantizedTensorClass · 0.70

Tested by

no test coverage detected