(self, fname_out: Path, endianess:gguf.GGUFEndian = gguf.GGUFEndian.LITTLE)
| 1145 | |
| 1146 | class OutputFile: |
| 1147 | def __init__(self, fname_out: Path, endianess:gguf.GGUFEndian = gguf.GGUFEndian.LITTLE): |
| 1148 | self.gguf = gguf.GGUFWriter(fname_out, gguf.MODEL_ARCH_NAMES[ARCH], endianess=endianess) |
| 1149 | |
| 1150 | def add_meta_arch(self, params: Params) -> None: |
| 1151 | name = "bitnet" |
nothing calls this directly
no outgoing calls
no test coverage detected