We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1fd99a commit 73d2aaaCopy full SHA for 73d2aaa
gguf-py/gguf/gguf_writer.py
@@ -57,9 +57,9 @@ def __init__(
57
self.endianess = endianess
58
self.offset_tensor = 0
59
self.data_alignment = GGUF_DEFAULT_ALIGNMENT
60
- self.kv_data = b""
+ self.kv_data = bytearray()
61
self.kv_data_count = 0
62
- self.ti_data = b""
+ self.ti_data = bytearray()
63
self.ti_data_count = 0
64
self.use_temp_file = use_temp_file
65
self.temp_file = None
gguf-py/pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "gguf"
3
-version = "0.5.1"
+version = "0.5.2"
4
description = "Read and write ML models in GGUF for GGML"
5
authors = ["GGML <[email protected]>"]
6
packages = [
0 commit comments