mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-12-25 10:54:36 +00:00
gguf-py : fix double call to add_architecture() (#8952)
Signed-off-by: tarilabs <matteo.mortari@gmail.com>
This commit is contained in:
parent
b72942fac9
commit
911b437f22
@ -15,7 +15,6 @@ def writer_example() -> None:
|
|||||||
# Example usage with a file
|
# Example usage with a file
|
||||||
gguf_writer = GGUFWriter("example.gguf", "llama")
|
gguf_writer = GGUFWriter("example.gguf", "llama")
|
||||||
|
|
||||||
gguf_writer.add_architecture()
|
|
||||||
gguf_writer.add_block_count(12)
|
gguf_writer.add_block_count(12)
|
||||||
gguf_writer.add_uint32("answer", 42) # Write a 32-bit integer
|
gguf_writer.add_uint32("answer", 42) # Write a 32-bit integer
|
||||||
gguf_writer.add_float32("answer_in_float", 42.0) # Write a 32-bit float
|
gguf_writer.add_float32("answer_in_float", 42.0) # Write a 32-bit float
|
||||||
|
Loading…
Reference in New Issue
Block a user