(self, fname_out: Path, endianess:gguf.GGUFEndian = gguf.GGUFEndian.LITTLE)
| 1071 | |
| 1072 | class OutputFile: |
| 1073 | def __init__(self, fname_out: Path, endianess:gguf.GGUFEndian = gguf.GGUFEndian.LITTLE): |
| 1074 | self.gguf = gguf.GGUFWriter(fname_out, gguf.MODEL_ARCH_NAMES[ARCH], endianess=endianess) |
| 1075 | |
| 1076 | def add_meta_arch(self, params: Params) -> None: |
| 1077 | name = "LLaMA" |
nothing calls this directly
no outgoing calls
no test coverage detected