(self, fname_out: Path, endianess:gguf.GGUFEndian = gguf.GGUFEndian.LITTLE)
| 968 | |
| 969 | class OutputFile: |
| 970 | def __init__(self, fname_out: Path, endianess:gguf.GGUFEndian = gguf.GGUFEndian.LITTLE) -> None: |
| 971 | self.gguf = gguf.GGUFWriter(fname_out, gguf.MODEL_ARCH_NAMES[ARCH], endianess=endianess) |
| 972 | |
| 973 | def add_meta_arch(self, params: Params) -> None: |
| 974 | name = "LLaMA" |
nothing calls this directly
no outgoing calls
no test coverage detected