2023-11-11 06:04:50 +01:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2024-05-03 21:36:41 +02:00
|
|
|
import logging
|
2023-11-11 06:04:50 +01:00
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
import struct
|
|
|
|
import tempfile
|
|
|
|
from enum import Enum, auto
|
|
|
|
from io import BufferedWriter
|
2024-05-11 17:06:26 +02:00
|
|
|
from typing import IO, Any, Sequence, Mapping
|
2024-04-18 13:49:01 +02:00
|
|
|
from string import ascii_letters, digits
|
2023-11-11 06:04:50 +01:00
|
|
|
|
|
|
|
import numpy as np
|
|
|
|
|
|
|
|
from .constants import (
|
|
|
|
GGUF_DEFAULT_ALIGNMENT,
|
|
|
|
GGUF_MAGIC,
|
|
|
|
GGUF_VERSION,
|
|
|
|
GGMLQuantizationType,
|
|
|
|
GGUFEndian,
|
|
|
|
GGUFValueType,
|
|
|
|
Keys,
|
|
|
|
RopeScalingType,
|
2024-02-15 18:21:49 +01:00
|
|
|
PoolingType,
|
2023-11-11 06:04:50 +01:00
|
|
|
TokenType,
|
|
|
|
)
|
|
|
|
|
2024-05-25 03:11:48 +02:00
|
|
|
from .quants import quant_shape_from_byte_shape
|
|
|
|
|
2024-05-03 21:36:41 +02:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2023-11-11 06:04:50 +01:00
|
|
|
|
|
|
|
class WriterState(Enum):
|
|
|
|
EMPTY = auto()
|
|
|
|
HEADER = auto()
|
|
|
|
KV_DATA = auto()
|
|
|
|
TI_DATA = auto()
|
|
|
|
|
|
|
|
|
|
|
|
class GGUFWriter:
|
|
|
|
fout: BufferedWriter
|
|
|
|
temp_file: tempfile.SpooledTemporaryFile[bytes] | None
|
2024-05-11 17:06:26 +02:00
|
|
|
tensors: list[np.ndarray[Any, Any]]
|
2023-11-11 06:04:50 +01:00
|
|
|
_simple_value_packing = {
|
|
|
|
GGUFValueType.UINT8: "B",
|
|
|
|
GGUFValueType.INT8: "b",
|
|
|
|
GGUFValueType.UINT16: "H",
|
|
|
|
GGUFValueType.INT16: "h",
|
|
|
|
GGUFValueType.UINT32: "I",
|
|
|
|
GGUFValueType.INT32: "i",
|
|
|
|
GGUFValueType.FLOAT32: "f",
|
|
|
|
GGUFValueType.UINT64: "Q",
|
|
|
|
GGUFValueType.INT64: "q",
|
|
|
|
GGUFValueType.FLOAT64: "d",
|
|
|
|
GGUFValueType.BOOL: "?",
|
|
|
|
}
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self, path: os.PathLike[str] | str, arch: str, use_temp_file: bool = True,
|
|
|
|
endianess: GGUFEndian = GGUFEndian.LITTLE,
|
|
|
|
):
|
|
|
|
self.fout = open(path, "wb")
|
|
|
|
self.arch = arch
|
|
|
|
self.endianess = endianess
|
|
|
|
self.offset_tensor = 0
|
|
|
|
self.data_alignment = GGUF_DEFAULT_ALIGNMENT
|
2023-11-13 00:39:37 +01:00
|
|
|
self.kv_data = bytearray()
|
2023-11-11 06:04:50 +01:00
|
|
|
self.kv_data_count = 0
|
2023-11-13 00:39:37 +01:00
|
|
|
self.ti_data = bytearray()
|
2023-11-11 06:04:50 +01:00
|
|
|
self.ti_data_count = 0
|
2024-04-28 17:36:18 +02:00
|
|
|
self.ti_names = set()
|
2023-11-11 06:04:50 +01:00
|
|
|
self.use_temp_file = use_temp_file
|
|
|
|
self.temp_file = None
|
|
|
|
self.tensors = []
|
2024-05-03 21:36:41 +02:00
|
|
|
logger.info("gguf: This GGUF file is for {0} Endian only".format(
|
2023-11-11 06:04:50 +01:00
|
|
|
"Big" if self.endianess == GGUFEndian.BIG else "Little",
|
|
|
|
))
|
|
|
|
self.state = WriterState.EMPTY
|
|
|
|
|
|
|
|
self.add_architecture()
|
|
|
|
|
|
|
|
def write_header_to_file(self) -> None:
|
|
|
|
if self.state is not WriterState.EMPTY:
|
|
|
|
raise ValueError(f'Expected output file to be empty, got {self.state}')
|
|
|
|
|
|
|
|
self._write_packed("<I", GGUF_MAGIC, skip_pack_prefix = True)
|
|
|
|
self._write_packed("I", GGUF_VERSION)
|
|
|
|
self._write_packed("Q", self.ti_data_count)
|
|
|
|
self._write_packed("Q", self.kv_data_count)
|
|
|
|
self.flush()
|
|
|
|
self.state = WriterState.HEADER
|
|
|
|
|
|
|
|
def write_kv_data_to_file(self) -> None:
|
|
|
|
if self.state is not WriterState.HEADER:
|
|
|
|
raise ValueError(f'Expected output file to contain the header, got {self.state}')
|
|
|
|
|
|
|
|
self.fout.write(self.kv_data)
|
|
|
|
self.flush()
|
|
|
|
self.state = WriterState.KV_DATA
|
|
|
|
|
|
|
|
def write_ti_data_to_file(self) -> None:
|
|
|
|
if self.state is not WriterState.KV_DATA:
|
|
|
|
raise ValueError(f'Expected output file to contain KV data, got {self.state}')
|
|
|
|
|
|
|
|
self.fout.write(self.ti_data)
|
|
|
|
self.flush()
|
|
|
|
self.state = WriterState.TI_DATA
|
|
|
|
|
|
|
|
def add_key(self, key: str) -> None:
|
|
|
|
self.add_val(key, GGUFValueType.STRING, add_vtype=False)
|
|
|
|
|
|
|
|
def add_uint8(self, key: str, val: int) -> None:
|
|
|
|
self.add_key(key)
|
|
|
|
self.add_val(val, GGUFValueType.UINT8)
|
|
|
|
|
|
|
|
def add_int8(self, key: str, val: int) -> None:
|
|
|
|
self.add_key(key)
|
|
|
|
self.add_val(val, GGUFValueType.INT8)
|
|
|
|
|
|
|
|
def add_uint16(self, key: str, val: int) -> None:
|
|
|
|
self.add_key(key)
|
|
|
|
self.add_val(val, GGUFValueType.UINT16)
|
|
|
|
|
|
|
|
def add_int16(self, key: str, val: int) -> None:
|
|
|
|
self.add_key(key)
|
|
|
|
self.add_val(val, GGUFValueType.INT16)
|
|
|
|
|
|
|
|
def add_uint32(self, key: str, val: int) -> None:
|
|
|
|
self.add_key(key)
|
|
|
|
self.add_val(val, GGUFValueType.UINT32)
|
|
|
|
|
|
|
|
def add_int32(self, key: str, val: int) -> None:
|
|
|
|
self.add_key(key)
|
|
|
|
self.add_val(val, GGUFValueType.INT32)
|
|
|
|
|
|
|
|
def add_float32(self, key: str, val: float) -> None:
|
|
|
|
self.add_key(key)
|
|
|
|
self.add_val(val, GGUFValueType.FLOAT32)
|
|
|
|
|
|
|
|
def add_uint64(self, key: str, val: int) -> None:
|
|
|
|
self.add_key(key)
|
|
|
|
self.add_val(val, GGUFValueType.UINT64)
|
|
|
|
|
|
|
|
def add_int64(self, key: str, val: int) -> None:
|
|
|
|
self.add_key(key)
|
|
|
|
self.add_val(val, GGUFValueType.INT64)
|
|
|
|
|
|
|
|
def add_float64(self, key: str, val: float) -> None:
|
|
|
|
self.add_key(key)
|
|
|
|
self.add_val(val, GGUFValueType.FLOAT64)
|
|
|
|
|
|
|
|
def add_bool(self, key: str, val: bool) -> None:
|
|
|
|
self.add_key(key)
|
|
|
|
self.add_val(val, GGUFValueType.BOOL)
|
|
|
|
|
|
|
|
def add_string(self, key: str, val: str) -> None:
|
|
|
|
if not val:
|
|
|
|
return
|
|
|
|
self.add_key(key)
|
|
|
|
self.add_val(val, GGUFValueType.STRING)
|
|
|
|
|
|
|
|
def add_array(self, key: str, val: Sequence[Any]) -> None:
|
|
|
|
if not isinstance(val, Sequence):
|
|
|
|
raise ValueError("Value must be a sequence for array type")
|
|
|
|
|
|
|
|
self.add_key(key)
|
|
|
|
self.add_val(val, GGUFValueType.ARRAY)
|
|
|
|
|
|
|
|
def add_val(self, val: Any, vtype: GGUFValueType | None = None, add_vtype: bool = True) -> None:
|
|
|
|
if vtype is None:
|
|
|
|
vtype = GGUFValueType.get_type(val)
|
|
|
|
|
|
|
|
if add_vtype:
|
|
|
|
self.kv_data += self._pack("I", vtype)
|
|
|
|
self.kv_data_count += 1
|
|
|
|
|
|
|
|
pack_fmt = self._simple_value_packing.get(vtype)
|
|
|
|
if pack_fmt is not None:
|
|
|
|
self.kv_data += self._pack(pack_fmt, val, skip_pack_prefix = vtype == GGUFValueType.BOOL)
|
|
|
|
elif vtype == GGUFValueType.STRING:
|
2024-05-09 00:16:38 +02:00
|
|
|
encoded_val = val.encode("utf-8") if isinstance(val, str) else val
|
2023-11-11 06:04:50 +01:00
|
|
|
self.kv_data += self._pack("Q", len(encoded_val))
|
|
|
|
self.kv_data += encoded_val
|
|
|
|
elif vtype == GGUFValueType.ARRAY and isinstance(val, Sequence) and val:
|
|
|
|
ltype = GGUFValueType.get_type(val[0])
|
|
|
|
if not all(GGUFValueType.get_type(i) is ltype for i in val[1:]):
|
|
|
|
raise ValueError("All items in a GGUF array should be of the same type")
|
|
|
|
self.kv_data += self._pack("I", ltype)
|
|
|
|
self.kv_data += self._pack("Q", len(val))
|
|
|
|
for item in val:
|
|
|
|
self.add_val(item, add_vtype=False)
|
|
|
|
else:
|
|
|
|
raise ValueError("Invalid GGUF metadata value type or value")
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def ggml_pad(x: int, n: int) -> int:
|
|
|
|
return ((x + n - 1) // n) * n
|
|
|
|
|
|
|
|
def add_tensor_info(
|
2024-05-13 20:10:51 +02:00
|
|
|
self, name: str, tensor_shape: Sequence[int], tensor_dtype: np.dtype,
|
2023-11-11 06:04:50 +01:00
|
|
|
tensor_nbytes: int, raw_dtype: GGMLQuantizationType | None = None,
|
|
|
|
) -> None:
|
|
|
|
if self.state is not WriterState.EMPTY:
|
|
|
|
raise ValueError(f'Expected output file to be empty, got {self.state}')
|
|
|
|
|
2024-04-28 17:36:18 +02:00
|
|
|
if name in self.ti_names:
|
|
|
|
raise ValueError(f'Duplicated tensor name {name}')
|
|
|
|
self.ti_names.add(name)
|
|
|
|
|
2024-05-09 00:16:38 +02:00
|
|
|
encoded_name = name.encode("utf-8")
|
2023-11-11 06:04:50 +01:00
|
|
|
self.ti_data += self._pack("Q", len(encoded_name))
|
|
|
|
self.ti_data += encoded_name
|
|
|
|
if raw_dtype is None:
|
gguf : add support for I64 and F64 arrays (#6062)
* gguf : add support for I64 and F64 arrays
GGML currently does not support I64 or F64 arrays and they are not often
used in machine learning, however if in the future the need arises, it
would be nice to add them now, so that the types are next to the other
types I8, I16, I32 in the enums, and it also reserves their type number.
Furthermore, with this addition the GGUF format becomes very usable for
most computational applications of NumPy (being compatible with the most
common NumPy dtypes: i8, i16, i32, i64, f32, f64), providing a faster,
and more versatile alternative to the `npz` format, and a simpler
alternative to the `hdf5` format.
The change in this PR seems small, not significantly increasing the
maintenance burden. I tested this from Python using GGUFWriter/Reader
and `gguf-dump`, as well as from C, everything seems to work.
* Fix compiler warnings
2024-03-15 09:46:51 +01:00
|
|
|
if tensor_dtype == np.float16:
|
2024-03-14 11:40:14 +01:00
|
|
|
dtype = GGMLQuantizationType.F16
|
gguf : add support for I64 and F64 arrays (#6062)
* gguf : add support for I64 and F64 arrays
GGML currently does not support I64 or F64 arrays and they are not often
used in machine learning, however if in the future the need arises, it
would be nice to add them now, so that the types are next to the other
types I8, I16, I32 in the enums, and it also reserves their type number.
Furthermore, with this addition the GGUF format becomes very usable for
most computational applications of NumPy (being compatible with the most
common NumPy dtypes: i8, i16, i32, i64, f32, f64), providing a faster,
and more versatile alternative to the `npz` format, and a simpler
alternative to the `hdf5` format.
The change in this PR seems small, not significantly increasing the
maintenance burden. I tested this from Python using GGUFWriter/Reader
and `gguf-dump`, as well as from C, everything seems to work.
* Fix compiler warnings
2024-03-15 09:46:51 +01:00
|
|
|
elif tensor_dtype == np.float32:
|
|
|
|
dtype = GGMLQuantizationType.F32
|
|
|
|
elif tensor_dtype == np.float64:
|
|
|
|
dtype = GGMLQuantizationType.F64
|
2024-03-14 11:40:14 +01:00
|
|
|
elif tensor_dtype == np.int8:
|
|
|
|
dtype = GGMLQuantizationType.I8
|
|
|
|
elif tensor_dtype == np.int16:
|
|
|
|
dtype = GGMLQuantizationType.I16
|
|
|
|
elif tensor_dtype == np.int32:
|
|
|
|
dtype = GGMLQuantizationType.I32
|
gguf : add support for I64 and F64 arrays (#6062)
* gguf : add support for I64 and F64 arrays
GGML currently does not support I64 or F64 arrays and they are not often
used in machine learning, however if in the future the need arises, it
would be nice to add them now, so that the types are next to the other
types I8, I16, I32 in the enums, and it also reserves their type number.
Furthermore, with this addition the GGUF format becomes very usable for
most computational applications of NumPy (being compatible with the most
common NumPy dtypes: i8, i16, i32, i64, f32, f64), providing a faster,
and more versatile alternative to the `npz` format, and a simpler
alternative to the `hdf5` format.
The change in this PR seems small, not significantly increasing the
maintenance burden. I tested this from Python using GGUFWriter/Reader
and `gguf-dump`, as well as from C, everything seems to work.
* Fix compiler warnings
2024-03-15 09:46:51 +01:00
|
|
|
elif tensor_dtype == np.int64:
|
|
|
|
dtype = GGMLQuantizationType.I64
|
2024-03-14 11:40:14 +01:00
|
|
|
else:
|
gguf : add support for I64 and F64 arrays (#6062)
* gguf : add support for I64 and F64 arrays
GGML currently does not support I64 or F64 arrays and they are not often
used in machine learning, however if in the future the need arises, it
would be nice to add them now, so that the types are next to the other
types I8, I16, I32 in the enums, and it also reserves their type number.
Furthermore, with this addition the GGUF format becomes very usable for
most computational applications of NumPy (being compatible with the most
common NumPy dtypes: i8, i16, i32, i64, f32, f64), providing a faster,
and more versatile alternative to the `npz` format, and a simpler
alternative to the `hdf5` format.
The change in this PR seems small, not significantly increasing the
maintenance burden. I tested this from Python using GGUFWriter/Reader
and `gguf-dump`, as well as from C, everything seems to work.
* Fix compiler warnings
2024-03-15 09:46:51 +01:00
|
|
|
raise ValueError("Only F16, F32, F64, I8, I16, I32, I64 tensors are supported for now")
|
2023-11-11 06:04:50 +01:00
|
|
|
else:
|
|
|
|
dtype = raw_dtype
|
2024-05-13 20:10:51 +02:00
|
|
|
if tensor_dtype == np.uint8:
|
2024-05-25 03:11:48 +02:00
|
|
|
tensor_shape = quant_shape_from_byte_shape(tensor_shape, raw_dtype)
|
2024-05-13 20:10:51 +02:00
|
|
|
n_dims = len(tensor_shape)
|
|
|
|
self.ti_data += self._pack("I", n_dims)
|
|
|
|
for i in range(n_dims):
|
|
|
|
self.ti_data += self._pack("Q", tensor_shape[n_dims - 1 - i])
|
2023-11-11 06:04:50 +01:00
|
|
|
self.ti_data += self._pack("I", dtype)
|
|
|
|
self.ti_data += self._pack("Q", self.offset_tensor)
|
|
|
|
self.offset_tensor += GGUFWriter.ggml_pad(tensor_nbytes, self.data_alignment)
|
|
|
|
self.ti_data_count += 1
|
|
|
|
|
|
|
|
def add_tensor(
|
2024-05-11 17:06:26 +02:00
|
|
|
self, name: str, tensor: np.ndarray[Any, Any], raw_shape: Sequence[int] | None = None,
|
2023-11-11 06:04:50 +01:00
|
|
|
raw_dtype: GGMLQuantizationType | None = None,
|
|
|
|
) -> None:
|
|
|
|
if self.endianess == GGUFEndian.BIG:
|
|
|
|
tensor.byteswap(inplace=True)
|
|
|
|
if self.use_temp_file and self.temp_file is None:
|
2023-11-20 11:35:47 +01:00
|
|
|
fp = tempfile.SpooledTemporaryFile(mode="w+b", max_size=256 * 1024 * 1024)
|
2023-11-11 06:04:50 +01:00
|
|
|
fp.seek(0)
|
|
|
|
self.temp_file = fp
|
|
|
|
|
|
|
|
shape: Sequence[int] = raw_shape if raw_shape is not None else tensor.shape
|
|
|
|
self.add_tensor_info(name, shape, tensor.dtype, tensor.nbytes, raw_dtype = raw_dtype)
|
|
|
|
|
|
|
|
if self.temp_file is None:
|
|
|
|
self.tensors.append(tensor)
|
|
|
|
return
|
|
|
|
|
|
|
|
tensor.tofile(self.temp_file)
|
|
|
|
self.write_padding(self.temp_file, tensor.nbytes)
|
|
|
|
|
|
|
|
def write_padding(self, fp: IO[bytes], n: int, align: int | None = None) -> None:
|
|
|
|
pad = GGUFWriter.ggml_pad(n, align if align is not None else self.data_alignment) - n
|
|
|
|
if pad != 0:
|
|
|
|
fp.write(bytes([0] * pad))
|
|
|
|
|
2024-05-11 17:06:26 +02:00
|
|
|
def write_tensor_data(self, tensor: np.ndarray[Any, Any]) -> None:
|
2023-11-11 06:04:50 +01:00
|
|
|
if self.state is not WriterState.TI_DATA:
|
|
|
|
raise ValueError(f'Expected output file to contain tensor info, got {self.state}')
|
|
|
|
|
|
|
|
if self.endianess == GGUFEndian.BIG:
|
|
|
|
tensor.byteswap(inplace=True)
|
|
|
|
self.write_padding(self.fout, self.fout.tell())
|
|
|
|
tensor.tofile(self.fout)
|
|
|
|
self.write_padding(self.fout, tensor.nbytes)
|
|
|
|
|
2024-05-09 00:16:38 +02:00
|
|
|
def write_tensors_to_file(self, *, progress: bool = False) -> None:
|
2023-11-11 06:04:50 +01:00
|
|
|
self.write_ti_data_to_file()
|
|
|
|
|
|
|
|
self.write_padding(self.fout, self.fout.tell())
|
|
|
|
|
|
|
|
if self.temp_file is None:
|
2024-05-09 00:16:38 +02:00
|
|
|
self.tensors.reverse() # to pop from the "beginning" in constant time
|
|
|
|
|
|
|
|
if progress:
|
|
|
|
from tqdm import tqdm
|
|
|
|
|
|
|
|
total_bytes = sum(t.nbytes for t in self.tensors)
|
|
|
|
|
|
|
|
bar = tqdm(desc="Writing", total=total_bytes, unit="byte", unit_scale=True)
|
|
|
|
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
tensor = self.tensors.pop()
|
|
|
|
except IndexError:
|
|
|
|
break
|
|
|
|
tensor.tofile(self.fout)
|
|
|
|
bar.update(tensor.nbytes)
|
|
|
|
self.write_padding(self.fout, tensor.nbytes)
|
|
|
|
return
|
2023-11-11 06:04:50 +01:00
|
|
|
while True:
|
|
|
|
try:
|
2024-05-09 00:16:38 +02:00
|
|
|
tensor = self.tensors.pop()
|
2023-11-11 06:04:50 +01:00
|
|
|
except IndexError:
|
|
|
|
break
|
|
|
|
tensor.tofile(self.fout)
|
|
|
|
self.write_padding(self.fout, tensor.nbytes)
|
|
|
|
return
|
|
|
|
|
|
|
|
self.temp_file.seek(0)
|
|
|
|
|
|
|
|
shutil.copyfileobj(self.temp_file, self.fout)
|
|
|
|
self.flush()
|
|
|
|
self.temp_file.close()
|
|
|
|
|
|
|
|
def flush(self) -> None:
|
|
|
|
self.fout.flush()
|
|
|
|
|
|
|
|
def close(self) -> None:
|
|
|
|
self.fout.close()
|
|
|
|
|
|
|
|
def add_architecture(self) -> None:
|
|
|
|
self.add_string(Keys.General.ARCHITECTURE, self.arch)
|
|
|
|
|
|
|
|
def add_author(self, author: str) -> None:
|
|
|
|
self.add_string(Keys.General.AUTHOR, author)
|
|
|
|
|
2024-04-05 20:41:38 +02:00
|
|
|
def add_version(self, version: str) -> None:
|
|
|
|
self.add_string(Keys.General.VERSION, version)
|
|
|
|
|
2023-11-11 06:04:50 +01:00
|
|
|
def add_tensor_data_layout(self, layout: str) -> None:
|
|
|
|
self.add_string(Keys.LLM.TENSOR_DATA_LAYOUT.format(arch=self.arch), layout)
|
|
|
|
|
|
|
|
def add_url(self, url: str) -> None:
|
|
|
|
self.add_string(Keys.General.URL, url)
|
|
|
|
|
|
|
|
def add_description(self, description: str) -> None:
|
|
|
|
self.add_string(Keys.General.DESCRIPTION, description)
|
|
|
|
|
2024-04-05 20:41:38 +02:00
|
|
|
def add_licence(self, licence: str) -> None:
|
|
|
|
self.add_string(Keys.General.LICENSE, licence)
|
|
|
|
|
2023-11-11 06:04:50 +01:00
|
|
|
def add_source_url(self, url: str) -> None:
|
|
|
|
self.add_string(Keys.General.SOURCE_URL, url)
|
|
|
|
|
|
|
|
def add_source_hf_repo(self, repo: str) -> None:
|
|
|
|
self.add_string(Keys.General.SOURCE_HF_REPO, repo)
|
|
|
|
|
|
|
|
def add_file_type(self, ftype: int) -> None:
|
|
|
|
self.add_uint32(Keys.General.FILE_TYPE, ftype)
|
|
|
|
|
|
|
|
def add_name(self, name: str) -> None:
|
|
|
|
self.add_string(Keys.General.NAME, name)
|
|
|
|
|
2024-05-11 17:06:26 +02:00
|
|
|
def add_quantization_version(self, quantization_version: int) -> None:
|
2023-11-11 06:04:50 +01:00
|
|
|
self.add_uint32(
|
|
|
|
Keys.General.QUANTIZATION_VERSION, quantization_version)
|
|
|
|
|
|
|
|
def add_custom_alignment(self, alignment: int) -> None:
|
|
|
|
self.data_alignment = alignment
|
|
|
|
self.add_uint32(Keys.General.ALIGNMENT, alignment)
|
|
|
|
|
2024-03-14 17:21:56 +01:00
|
|
|
def add_vocab_size(self, size: int) -> None:
|
|
|
|
self.add_uint32(Keys.LLM.VOCAB_SIZE.format(arch=self.arch), size)
|
|
|
|
|
2023-11-11 06:04:50 +01:00
|
|
|
def add_context_length(self, length: int) -> None:
|
|
|
|
self.add_uint32(Keys.LLM.CONTEXT_LENGTH.format(arch=self.arch), length)
|
|
|
|
|
|
|
|
def add_embedding_length(self, length: int) -> None:
|
|
|
|
self.add_uint32(Keys.LLM.EMBEDDING_LENGTH.format(arch=self.arch), length)
|
|
|
|
|
|
|
|
def add_block_count(self, length: int) -> None:
|
|
|
|
self.add_uint32(Keys.LLM.BLOCK_COUNT.format(arch=self.arch), length)
|
|
|
|
|
Add support for DeepseekV2ForCausalLM (#7519)
* common : increase max number of experts to 160
* common : add tensors ATTN_Q_A, ATTN_Q_A_NORM, ATTN_Q_B, ATTN_KV_A_MQA, ATTN_KV_A_NORM, ATTN_KV_B needed by DeepSeek-V2 MLA (multi-head latent attention) architecture
* common : add model header parameters: leading_dense_block_count, expert_feed_forward_length, expert_shared_count, expert_weights_scale, attention.q_lora_rank, attention.kv_lora_rank, rope.scaling.yarn_log_multiplier
* convert-hf : add model conversion support for DeepseekV2ForCausalLM
* llama : add model types for DeepSeek-V2 and DeepSeek-V2-Lite models
* llama : add two new llm_build_moe_ffn() arguments: scale_w (whether to scale weights of selected MoE experts) and w_scale (numerical value of the scaling factor)
* llama : add inference support for LLM_ARCH_DEEPSEEK2
---------
Co-authored-by: Stanisław Szymczyk <sszymczy@gmail.com>
2024-05-28 17:07:05 +02:00
|
|
|
def add_leading_dense_block_count(self, length: int) -> None:
|
|
|
|
self.add_uint32(Keys.LLM.LEADING_DENSE_BLOCK_COUNT.format(arch=self.arch), length)
|
|
|
|
|
2023-11-11 06:04:50 +01:00
|
|
|
def add_feed_forward_length(self, length: int) -> None:
|
|
|
|
self.add_uint32(Keys.LLM.FEED_FORWARD_LENGTH.format(arch=self.arch), length)
|
|
|
|
|
Add support for DeepseekV2ForCausalLM (#7519)
* common : increase max number of experts to 160
* common : add tensors ATTN_Q_A, ATTN_Q_A_NORM, ATTN_Q_B, ATTN_KV_A_MQA, ATTN_KV_A_NORM, ATTN_KV_B needed by DeepSeek-V2 MLA (multi-head latent attention) architecture
* common : add model header parameters: leading_dense_block_count, expert_feed_forward_length, expert_shared_count, expert_weights_scale, attention.q_lora_rank, attention.kv_lora_rank, rope.scaling.yarn_log_multiplier
* convert-hf : add model conversion support for DeepseekV2ForCausalLM
* llama : add model types for DeepSeek-V2 and DeepSeek-V2-Lite models
* llama : add two new llm_build_moe_ffn() arguments: scale_w (whether to scale weights of selected MoE experts) and w_scale (numerical value of the scaling factor)
* llama : add inference support for LLM_ARCH_DEEPSEEK2
---------
Co-authored-by: Stanisław Szymczyk <sszymczy@gmail.com>
2024-05-28 17:07:05 +02:00
|
|
|
def add_expert_feed_forward_length(self, length: int) -> None:
|
|
|
|
self.add_uint32(Keys.LLM.EXPERT_FEED_FORWARD_LENGTH.format(arch=self.arch), length)
|
|
|
|
|
2023-11-11 06:04:50 +01:00
|
|
|
def add_parallel_residual(self, use: bool) -> None:
|
|
|
|
self.add_bool(Keys.LLM.USE_PARALLEL_RESIDUAL.format(arch=self.arch), use)
|
|
|
|
|
|
|
|
def add_head_count(self, count: int) -> None:
|
|
|
|
self.add_uint32(Keys.Attention.HEAD_COUNT.format(arch=self.arch), count)
|
|
|
|
|
|
|
|
def add_head_count_kv(self, count: int) -> None:
|
|
|
|
self.add_uint32(Keys.Attention.HEAD_COUNT_KV.format(arch=self.arch), count)
|
|
|
|
|
2024-01-02 12:51:28 +01:00
|
|
|
def add_key_length(self, length: int) -> None:
|
|
|
|
self.add_uint32(Keys.Attention.KEY_LENGTH.format(arch=self.arch), length)
|
|
|
|
|
|
|
|
def add_value_length(self, length: int) -> None:
|
|
|
|
self.add_uint32(Keys.Attention.VALUE_LENGTH.format(arch=self.arch), length)
|
|
|
|
|
2023-11-11 06:04:50 +01:00
|
|
|
def add_max_alibi_bias(self, bias: float) -> None:
|
|
|
|
self.add_float32(Keys.Attention.MAX_ALIBI_BIAS.format(arch=self.arch), bias)
|
|
|
|
|
|
|
|
def add_clamp_kqv(self, value: float) -> None:
|
|
|
|
self.add_float32(Keys.Attention.CLAMP_KQV.format(arch=self.arch), value)
|
|
|
|
|
2024-03-15 21:41:22 +01:00
|
|
|
def add_logit_scale(self, value: float) -> None:
|
|
|
|
self.add_float32(Keys.LLM.LOGIT_SCALE.format(arch=self.arch), value)
|
|
|
|
|
2023-12-13 13:04:25 +01:00
|
|
|
def add_expert_count(self, count: int) -> None:
|
|
|
|
self.add_uint32(Keys.LLM.EXPERT_COUNT.format(arch=self.arch), count)
|
|
|
|
|
|
|
|
def add_expert_used_count(self, count: int) -> None:
|
|
|
|
self.add_uint32(Keys.LLM.EXPERT_USED_COUNT.format(arch=self.arch), count)
|
|
|
|
|
Add support for DeepseekV2ForCausalLM (#7519)
* common : increase max number of experts to 160
* common : add tensors ATTN_Q_A, ATTN_Q_A_NORM, ATTN_Q_B, ATTN_KV_A_MQA, ATTN_KV_A_NORM, ATTN_KV_B needed by DeepSeek-V2 MLA (multi-head latent attention) architecture
* common : add model header parameters: leading_dense_block_count, expert_feed_forward_length, expert_shared_count, expert_weights_scale, attention.q_lora_rank, attention.kv_lora_rank, rope.scaling.yarn_log_multiplier
* convert-hf : add model conversion support for DeepseekV2ForCausalLM
* llama : add model types for DeepSeek-V2 and DeepSeek-V2-Lite models
* llama : add two new llm_build_moe_ffn() arguments: scale_w (whether to scale weights of selected MoE experts) and w_scale (numerical value of the scaling factor)
* llama : add inference support for LLM_ARCH_DEEPSEEK2
---------
Co-authored-by: Stanisław Szymczyk <sszymczy@gmail.com>
2024-05-28 17:07:05 +02:00
|
|
|
def add_expert_shared_count(self, count: int) -> None:
|
|
|
|
self.add_uint32(Keys.LLM.EXPERT_SHARED_COUNT.format(arch=self.arch), count)
|
|
|
|
|
|
|
|
def add_expert_weights_scale(self, value: float) -> None:
|
|
|
|
self.add_float32(Keys.LLM.EXPERT_WEIGHTS_SCALE.format(arch=self.arch), value)
|
|
|
|
|
2023-11-11 06:04:50 +01:00
|
|
|
def add_layer_norm_eps(self, value: float) -> None:
|
|
|
|
self.add_float32(Keys.Attention.LAYERNORM_EPS.format(arch=self.arch), value)
|
|
|
|
|
|
|
|
def add_layer_norm_rms_eps(self, value: float) -> None:
|
|
|
|
self.add_float32(Keys.Attention.LAYERNORM_RMS_EPS.format(arch=self.arch), value)
|
|
|
|
|
2024-02-11 17:21:38 +01:00
|
|
|
def add_causal_attention(self, value: bool) -> None:
|
|
|
|
self.add_bool(Keys.Attention.CAUSAL.format(arch=self.arch), value)
|
2024-02-13 13:06:58 +01:00
|
|
|
|
Add support for DeepseekV2ForCausalLM (#7519)
* common : increase max number of experts to 160
* common : add tensors ATTN_Q_A, ATTN_Q_A_NORM, ATTN_Q_B, ATTN_KV_A_MQA, ATTN_KV_A_NORM, ATTN_KV_B needed by DeepSeek-V2 MLA (multi-head latent attention) architecture
* common : add model header parameters: leading_dense_block_count, expert_feed_forward_length, expert_shared_count, expert_weights_scale, attention.q_lora_rank, attention.kv_lora_rank, rope.scaling.yarn_log_multiplier
* convert-hf : add model conversion support for DeepseekV2ForCausalLM
* llama : add model types for DeepSeek-V2 and DeepSeek-V2-Lite models
* llama : add two new llm_build_moe_ffn() arguments: scale_w (whether to scale weights of selected MoE experts) and w_scale (numerical value of the scaling factor)
* llama : add inference support for LLM_ARCH_DEEPSEEK2
---------
Co-authored-by: Stanisław Szymczyk <sszymczy@gmail.com>
2024-05-28 17:07:05 +02:00
|
|
|
def add_q_lora_rank(self, length: int) -> None:
|
|
|
|
self.add_uint32(Keys.Attention.Q_LORA_RANK.format(arch=self.arch), length)
|
|
|
|
|
|
|
|
def add_kv_lora_rank(self, length: int) -> None:
|
|
|
|
self.add_uint32(Keys.Attention.KV_LORA_RANK.format(arch=self.arch), length)
|
|
|
|
|
2024-02-15 18:21:49 +01:00
|
|
|
def add_pooling_type(self, value: PoolingType) -> None:
|
2024-03-02 18:21:47 +01:00
|
|
|
self.add_uint32(Keys.LLM.POOLING_TYPE.format(arch=self.arch), value.value)
|
2024-02-11 17:21:38 +01:00
|
|
|
|
2023-11-11 06:04:50 +01:00
|
|
|
def add_rope_dimension_count(self, count: int) -> None:
|
|
|
|
self.add_uint32(Keys.Rope.DIMENSION_COUNT.format(arch=self.arch), count)
|
|
|
|
|
|
|
|
def add_rope_freq_base(self, value: float) -> None:
|
|
|
|
self.add_float32(Keys.Rope.FREQ_BASE.format(arch=self.arch), value)
|
|
|
|
|
|
|
|
def add_rope_scaling_type(self, value: RopeScalingType) -> None:
|
|
|
|
self.add_string(Keys.Rope.SCALING_TYPE.format(arch=self.arch), value.value)
|
|
|
|
|
|
|
|
def add_rope_scaling_factor(self, value: float) -> None:
|
|
|
|
self.add_float32(Keys.Rope.SCALING_FACTOR.format(arch=self.arch), value)
|
|
|
|
|
2024-05-21 22:28:32 +02:00
|
|
|
def add_rope_scaling_attn_factors(self, value: Sequence[float]) -> None:
|
|
|
|
self.add_float32(Keys.Rope.SCALING_ATTN_FACTOR.format(arch=self.arch), value)
|
|
|
|
|
2023-11-11 06:04:50 +01:00
|
|
|
def add_rope_scaling_orig_ctx_len(self, value: int) -> None:
|
|
|
|
self.add_uint32(Keys.Rope.SCALING_ORIG_CTX_LEN.format(arch=self.arch), value)
|
|
|
|
|
|
|
|
def add_rope_scaling_finetuned(self, value: bool) -> None:
|
|
|
|
self.add_bool(Keys.Rope.SCALING_FINETUNED.format(arch=self.arch), value)
|
|
|
|
|
Add support for DeepseekV2ForCausalLM (#7519)
* common : increase max number of experts to 160
* common : add tensors ATTN_Q_A, ATTN_Q_A_NORM, ATTN_Q_B, ATTN_KV_A_MQA, ATTN_KV_A_NORM, ATTN_KV_B needed by DeepSeek-V2 MLA (multi-head latent attention) architecture
* common : add model header parameters: leading_dense_block_count, expert_feed_forward_length, expert_shared_count, expert_weights_scale, attention.q_lora_rank, attention.kv_lora_rank, rope.scaling.yarn_log_multiplier
* convert-hf : add model conversion support for DeepseekV2ForCausalLM
* llama : add model types for DeepSeek-V2 and DeepSeek-V2-Lite models
* llama : add two new llm_build_moe_ffn() arguments: scale_w (whether to scale weights of selected MoE experts) and w_scale (numerical value of the scaling factor)
* llama : add inference support for LLM_ARCH_DEEPSEEK2
---------
Co-authored-by: Stanisław Szymczyk <sszymczy@gmail.com>
2024-05-28 17:07:05 +02:00
|
|
|
def add_rope_scaling_yarn_log_mul(self, value: float) -> None:
|
|
|
|
self.add_float32(Keys.Rope.SCALING_YARN_LOG_MUL.format(arch=self.arch), value)
|
|
|
|
|
llama : support Mamba Selective State Space Models (#5328)
* mamba : begin working on support for Mamba SSM
* mamba : begin figuring out how to (ab)use the kv cache for Mamba
* mamba : recurrent inference almost works, but incoherent
* mamba : recurrent inference WORKS!!!
* convert : optionally use d_conv and d_state from config.json for Mamba
* mamba : refactor recurrent conv, resulting in 20% perf increase
It's still slower than I'd like, but I did not really optimize `ggml_exp` yet.
I also refactored `ggml_exp` to work with tensors with more than 2 dimensions.
* ggml : parallelize ggml_exp
This results in 8% faster token generation for Mamba-130M.
* mamba : simplify the conv step with a self-overlapping view
Turns out the conv_state can be made smaller by one column.
Note that this breaks existing GGUFs of Mamba,
because the key_value_length field is tied to the conv_state size.
Convolution with a self-overlapping view is cool!
And it's much simpler than what I initially thought would be necessary
to make the convolution step work with more than 1 token at a time.
Next step is to make the SSM step work on batches of tokens too,
and thus I need to figure out a way to make a parallel selective scan
which will keep the ssm_state small and won't make it bigger
by a factor of (n_layer * batch_size).
* llama : fix Mamba KV self size wrongly displaying as f16 instead of f32
Relatedly, I also tried to see if other types than f32 worked for the states,
but they don't, because of the operators used.
It's probably better anyway to keep lots of precision there,
since the states are small anyway.
* mamba : fix self-overlapping view depth stride
* mamba : handle batches of more than 1 token
This means running Mamba no longer crashes when using the default settings!
And probably also slightly faster prompt processing.
Both batched and non-batched processing yield the same output.
Previously, the state was not cleared when starting a sequence.
Next step is to make the KV cache API work as expected for Mamba models.
* ggml: add ggml_ssm_scan to help with parallel selective scan
If the selective scan was implemented without a custom operator,
there would be waaay too many nodes in the graph. For example,
for Mamba-130M, with a batch size of 512 (the default),
a naive selective scan could add at least 24*512=12288 nodes,
which is more than LLAMA_MAX_NODES (8192),
and that's only for the smallest Mamba model.
So it's much cleaner with a custom operator.
Not sure about the name, though.
* ggml : in ggml_ssm_scan, merge multiple rows in the same vec operation
This will help with performance on CPU if ggml_vec_mul_f32
and ggml_vec_add_f32 are ever optimized with SIMD.
* mamba : very basic quantization support
Mostly works, but there is currently no difference
between the variants of a k-quant (e.g. Q4_K_S and Q4_K_M are the same).
Most of the SSM-specific weights can be kept in f32 without affecting
the size that much, since they are relatively small.
(the linear projection weights are responsible for most of Mamba's size)
Too much quantization seems to make the state degrade quite fast, and
the model begins to output gibberish.
It seems to affect bigger models to a lesser extent than small models,
but I'm not sure by how much.
Experimentation will be needed to figure out which weights are more important
for the _M (and _L?) variants of k-quants for Mamba.
* convert : fix wrong name for layer norm weight of offical Mamba models
I was using Q-bert/Mamba-* models before, which have a slighlty different
naming scheme for the weights.
(they start with "model.layers" instead of "backbone.layers")
* mamba : fuse more steps of the SSM scan in the ggml_ssm_scan operator
This increases performance on CPU by around 30% for prompt processing,
and by around 20% for text generation.
However, it also makes the ggml_exp and ggml_soft_plus operators unused.
Whether or not they should be kept will be decided later.
* convert : for Mamba, also consider the "MambaLMHeadModel" arch name
It's the name of the class of the official implementation,
though they don't use it (yet) in the "architectures" field of config.json
* mamba : fix vocab size problems with official models
The perplexity was waaaay to high for models with a non-round vocab size.
Not sure why, but it needed to be fixed in the metadata.
Note that this breaks existing GGUF-converted Mamba models,
but **only if** the vocab size was not already rounded.
* ggml : remove ggml_exp and ggml_soft_plus
They did not exist anyway outside of this branch,
and since ggml_ssm_scan fused operations together, they are unused.
It's always possible to bring them back if needed.
* mamba : remove some useless comments
No code change.
* convert : fix flake8 linter errors
* mamba : apply suggestions from code review
* mamba : remove unecessary branch for row-wise ssm_state and C multiplication
It was previously done to avoid permuting when only one token is processed
at a time (like when generating text), but permuting is cheap,
and dynamically changing the compute graph is not future-proof.
* ggml : in ggml_ssm_scan, use more appropriate asserts
* ggml : rename the destination pointer in ggml_compute_forward_ssm_scan_f32
* mamba : multiple sequences, but one at a time
This is a step towards making this Mamba implementation usable
with the server example (the way the system prompt is kept when clearing
the client slots will need to be changed before this can work, though).
The KV cache size for this kind of model is tied to the maximum number
of sequences kept at any single time.
For now, this number is obtained from n_parallel (plus one,
to have an extra sequence to dedicate to the system prompt),
but there might be a better way to do this which won't also
make the main example use 2 cells even if only 1 is really used.
(for this specific case, --parallel 0 helps)
Simultaneous sequence processing will probably require changes to
ggml_ssm_scan, and possibly a new operator for the conv step.
* mamba : support llama_kv_cache_seq_cp
This (mis)uses the logic around K shifts, because tokens in a state
can't be shifted anyway, and because inp_K_shift has the right shape and type.
Using ggml_get_rows is a nice way to do copies, but copy chains can't work.
Fortunately, copy chains don't really seem to be used in the examples.
Each KV cell is dedicated to the sequence ID corresponding to its own index.
* mamba : use a state mask
It's cleaner than the previous heuristic of
checking for the pos of the first token in the batch.
inp_KQ_mask could not be re-used for this, because it has the wrong shape
and because it seems more suited to the next step of
simultaneous sequence processing (helping with the problem of
remembering which token belongs to which sequence(s)/state(s)).
* llama : replace the usage of n_ctx with kv_self.size in many places
* mamba : use n_tokens directly instead of n_tok
* mamba : in comments, properly refer to KV cells instead of slots
* mamba : reduce memory usage of ggml_ssm_scan
From 290.37 MiB to 140.68 MiB of CPU compute buffer size
with Mamba 3B with a batch size of 512.
The result tensor of ggml_ssm_scan was previously a big part
of the CPU compute buffer size. To make it smaller,
it does not contain the intermediate ssm states anymore.
Both y and the last ssm state are combined in the result tensor,
because it seems only a single tensor can be returned by an operator
with the way the graph is built.
* mamba : simultaneous sequence processing
A batch can now contain tokens from multiple sequences.
This is necessary for at least the parallel example, the server example,
and the HellaSwag test in the perplexity example.
However, for this to be useful, uses of llama_kv_cache_seq_rm/cp
will need to be changed to work on whole sequences.
* ggml : add ggml_ssm_conv as a new operator for the conv step of Mamba
This operator makes it possible to use and update the correct states
for each token of the batch in the same way as ggml_ssm_scan.
Other solutions which use existing operators would need loops which would
add too many nodes to the graph (at least the ones I thought of).
Using this operator further reduces the size of the CPU compute buffer
from 140.68 MiB to 103.20 MiB with Mamba 3B with a batch size of 512.
And (at least on CPU), it's a bit faster than before.
Note that "ggml_ssm_conv" is probably not the most appropriate name,
and it could be changed if a better one is found.
* llama : add inp_s_seq as a new input tensor
The most convenient implementation to select the correct state (for Mamba)
for each token is to directly get the correct index from a tensor.
This is why inp_s_seq is storing int32_t and not floats.
The other, less convenient way to select the correct state would be
to have inp_KQ_mask contain 1.0f for each state used by a token
and 0.0f otherwise. This complicates quickly fetching the first used
state of a token, and is also less efficient because a whole row
of the mask would always need to be read for each token.
Using indexes makes it easy to stop searching when there are
no more sequences for a token, and the first sequence assigned
is always very quickly available (it's the first element of each row).
* mamba : support llama_kv_cache_seq_cp copy chains
* mamba : support shifting and dividing the kv cache pos
* mamba : make the server and parallel examples work with whole sequences
A seq_id is dedicated to the system prompt in both cases.
* llama : make llama_kv_cache_seq_rm return whether it succeeded or not
* mamba : dedicate an input tensor for state copy indices
This is cleaner and makes it easier to adapt when/if token positions
(and by extension, inp_K_shift) are no longer integers.
* mamba : adapt perplexity, batched, and batched-bench examples
* perplexity : limit the max number of sequences
This adapts to what the loaded model can provide.
* llama : add llama_n_max_seq to get the upper limit for seq_ids
Used by the perplexity example.
* batched : pass n_parallel to the model's context params
This should have been there already, but it wasn't.
* batched-bench : reserve sequences to support Mamba
* batched-bench : fix tokens being put in wrong sequences
Generation quality isn't what's measured in there anyway,
but at least using the correct sequences avoids using non-consecutive
token positions.
* mamba : stop abusing attention metadata
This breaks existing converted-to-GGUF Mamba models,
but will allow supporting mixed architectures like MambaFormer
without needing to break Mamba models.
This will also allow changing the size of Mamba's states
without having to reconvert models in the future.
(e.g. using something else than d_conv - 1 columns for the conv_states
will not require breaking existing converted Mamba models again)
* gguf-py : add new KV metadata key-value pairs for Mamba
* llama : add new metadata key-value pairs for Mamba
* llama : guard against divisions by zero when n_head is 0
* mamba : rename "unlimited" KV cache property to "recurrent"
* mamba : more correctly update the "used" field of the KV cache
* ggml : in ggml_ssm_scan, use a threshold for soft_plus
This is how the official Mamba implementation does it,
and it's also what torch.nn.Softplus does.
* convert : for Mamba, fallback to internal NeoX tokenizer
The resulting models are exactly the same
as if the tokenizer.json and tokenizer_config.json of GPT-NeoX were there.
* mamba : support state saving and restoring
* ggml : implicitly pass src tensors through dst for Mamba-related ops
* mamba : clarify some comments
* server : fix cache_tokens not getting correctly resized
Otherwise, when the "we have to evaluate at least 1 token" special case
was triggered, an extra token was kept in cache_tokens even if it was
removed from the KV cache.
For Mamba, this caused useless prompt reprocessing when the previous
request triggered the above case.
* convert-hf : support new metadata keys for Mamba
For the models available at
https://huggingface.co/collections/state-spaces/transformers-compatible-mamba-65e7b40ab87e5297e45ae406
* mamba : rename metadata to be more similar to transformers library
This breaks existing converted-to-GGUF models,
but the metadata names are more "standard".
* mamba : support mamba-*-hf models
These models share their token_embd.weight with their output.weight
* mamba : add missing spaces
This is purely a formatting change.
* convert-hf : omit output.weight when identical with token_embd.weight
Only for Mamba for now, but it might be relevant for other models eventually.
Most Mamba models actually share these two tensors, albeit implicitly.
* readme : add Mamba to supported models, and add recent API changes
* mamba : move state_seq and state_mask views outside layer loop
A few tensors were also missing `struct` in front of `ggml_tensor`.
2024-03-08 23:31:00 +01:00
|
|
|
def add_ssm_conv_kernel(self, value: int) -> None:
|
|
|
|
self.add_uint32(Keys.SSM.CONV_KERNEL.format(arch=self.arch), value)
|
|
|
|
|
|
|
|
def add_ssm_inner_size(self, value: int) -> None:
|
|
|
|
self.add_uint32(Keys.SSM.INNER_SIZE.format(arch=self.arch), value)
|
|
|
|
|
|
|
|
def add_ssm_state_size(self, value: int) -> None:
|
|
|
|
self.add_uint32(Keys.SSM.STATE_SIZE.format(arch=self.arch), value)
|
|
|
|
|
|
|
|
def add_ssm_time_step_rank(self, value: int) -> None:
|
|
|
|
self.add_uint32(Keys.SSM.TIME_STEP_RANK.format(arch=self.arch), value)
|
|
|
|
|
2023-11-11 06:04:50 +01:00
|
|
|
def add_tokenizer_model(self, model: str) -> None:
|
|
|
|
self.add_string(Keys.Tokenizer.MODEL, model)
|
|
|
|
|
2024-04-29 15:58:41 +02:00
|
|
|
def add_tokenizer_pre(self, pre: str) -> None:
|
|
|
|
self.add_string(Keys.Tokenizer.PRE, pre)
|
|
|
|
|
2023-11-11 06:04:50 +01:00
|
|
|
def add_token_list(self, tokens: Sequence[str] | Sequence[bytes] | Sequence[bytearray]) -> None:
|
|
|
|
self.add_array(Keys.Tokenizer.LIST, tokens)
|
|
|
|
|
|
|
|
def add_token_merges(self, merges: Sequence[str] | Sequence[bytes] | Sequence[bytearray]) -> None:
|
|
|
|
self.add_array(Keys.Tokenizer.MERGES, merges)
|
|
|
|
|
|
|
|
def add_token_types(self, types: Sequence[TokenType] | Sequence[int]) -> None:
|
|
|
|
self.add_array(Keys.Tokenizer.TOKEN_TYPE, types)
|
|
|
|
|
2024-02-11 17:21:38 +01:00
|
|
|
def add_token_type_count(self, value: int) -> None:
|
|
|
|
self.add_uint32(Keys.Tokenizer.TOKEN_TYPE_COUNT, value)
|
|
|
|
|
2023-11-11 06:04:50 +01:00
|
|
|
def add_token_scores(self, scores: Sequence[float]) -> None:
|
|
|
|
self.add_array(Keys.Tokenizer.SCORES, scores)
|
|
|
|
|
|
|
|
def add_bos_token_id(self, id: int) -> None:
|
|
|
|
self.add_uint32(Keys.Tokenizer.BOS_ID, id)
|
|
|
|
|
|
|
|
def add_eos_token_id(self, id: int) -> None:
|
|
|
|
self.add_uint32(Keys.Tokenizer.EOS_ID, id)
|
|
|
|
|
|
|
|
def add_unk_token_id(self, id: int) -> None:
|
|
|
|
self.add_uint32(Keys.Tokenizer.UNK_ID, id)
|
|
|
|
|
|
|
|
def add_sep_token_id(self, id: int) -> None:
|
|
|
|
self.add_uint32(Keys.Tokenizer.SEP_ID, id)
|
|
|
|
|
|
|
|
def add_pad_token_id(self, id: int) -> None:
|
|
|
|
self.add_uint32(Keys.Tokenizer.PAD_ID, id)
|
|
|
|
|
2024-02-15 14:14:37 +01:00
|
|
|
def add_cls_token_id(self, id: int) -> None:
|
|
|
|
self.add_uint32(Keys.Tokenizer.CLS_ID, id)
|
|
|
|
|
|
|
|
def add_mask_token_id(self, id: int) -> None:
|
|
|
|
self.add_uint32(Keys.Tokenizer.MASK_ID, id)
|
|
|
|
|
2023-11-11 06:04:50 +01:00
|
|
|
def add_add_bos_token(self, value: bool) -> None:
|
|
|
|
self.add_bool(Keys.Tokenizer.ADD_BOS, value)
|
|
|
|
|
|
|
|
def add_add_eos_token(self, value: bool) -> None:
|
|
|
|
self.add_bool(Keys.Tokenizer.ADD_EOS, value)
|
|
|
|
|
2024-02-01 10:19:51 +01:00
|
|
|
def add_add_space_prefix(self, value: bool) -> None:
|
|
|
|
self.add_bool(Keys.Tokenizer.ADD_PREFIX, value)
|
|
|
|
|
2024-04-18 13:49:01 +02:00
|
|
|
def add_chat_template(self, value: str | Sequence[Mapping[str, str]]) -> None:
|
2024-05-09 00:16:38 +02:00
|
|
|
if not isinstance(value, str):
|
2024-04-18 13:49:01 +02:00
|
|
|
template_default = None
|
|
|
|
template_names = set()
|
|
|
|
|
|
|
|
for choice in value:
|
|
|
|
name = choice.get('name', '')
|
|
|
|
template = choice.get('template')
|
|
|
|
|
|
|
|
# Allowing non-alphanumerical characters in template name is probably not a good idea, so filter it
|
|
|
|
name = ''.join((c if c in ascii_letters + digits else '_' for c in name))
|
|
|
|
|
|
|
|
if name and template is not None:
|
|
|
|
if name == 'default':
|
|
|
|
template_default = template
|
|
|
|
else:
|
|
|
|
template_names.add(name)
|
|
|
|
self.add_string(Keys.Tokenizer.CHAT_TEMPLATE_N.format(name=name), template)
|
|
|
|
|
|
|
|
if template_names:
|
|
|
|
self.add_array(Keys.Tokenizer.CHAT_TEMPLATES, list(template_names))
|
|
|
|
|
|
|
|
if template_default is None:
|
|
|
|
return
|
|
|
|
|
|
|
|
value = template_default
|
|
|
|
|
2023-11-19 11:10:52 +01:00
|
|
|
self.add_string(Keys.Tokenizer.CHAT_TEMPLATE, value)
|
|
|
|
|
2024-04-16 08:13:13 +02:00
|
|
|
def add_prefix_token_id(self, id: int) -> None:
|
|
|
|
self.add_uint32(Keys.Tokenizer.PREFIX_ID, id)
|
|
|
|
|
|
|
|
def add_suffix_token_id(self, id: int) -> None:
|
|
|
|
self.add_uint32(Keys.Tokenizer.SUFFIX_ID, id)
|
|
|
|
|
|
|
|
def add_middle_token_id(self, id: int) -> None:
|
|
|
|
self.add_uint32(Keys.Tokenizer.MIDDLE_ID, id)
|
|
|
|
|
|
|
|
def add_eot_token_id(self, id: int) -> None:
|
|
|
|
self.add_uint32(Keys.Tokenizer.EOT_ID, id)
|
|
|
|
|
2023-11-11 06:04:50 +01:00
|
|
|
def _pack(self, fmt: str, value: Any, skip_pack_prefix: bool = False) -> bytes:
|
|
|
|
pack_prefix = ''
|
|
|
|
if not skip_pack_prefix:
|
|
|
|
pack_prefix = '<' if self.endianess == GGUFEndian.LITTLE else '>'
|
|
|
|
return struct.pack(f'{pack_prefix}{fmt}', value)
|
|
|
|
|
|
|
|
def _write_packed(self, fmt: str, value: Any, skip_pack_prefix: bool = False) -> None:
|
|
|
|
self.fout.write(self._pack(fmt, value, skip_pack_prefix))
|