diff options
Diffstat (limited to 'gguf-py/examples/writer.py')
-rwxr-xr-x | gguf-py/examples/writer.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gguf-py/examples/writer.py b/gguf-py/examples/writer.py index f39eed1a..731873a7 100755 --- a/gguf-py/examples/writer.py +++ b/gguf-py/examples/writer.py @@ -15,7 +15,6 @@ def writer_example() -> None: # Example usage with a file gguf_writer = GGUFWriter("example.gguf", "llama") - gguf_writer.add_architecture() gguf_writer.add_block_count(12) 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 |