-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Binary format choice #34
Comments
Here is a list of minor fixes and issues in GGUF:
|
I would spell out a few more tenets
|
Requirements:
n
,m
,k
in this order (each name exactly length 1) must correspond to easy to calculate positions in the binary file, so that the reader can be written easily, without actually parsing the headers. We can store the offset as an integer in metadata for now.Options:
We chose
gguf
and wrote our own C reader. There is an existinggguf
Python library to read/write. The limitations do not currently affect us, since all arrays have dimensions up to 4, and we don't need f64 and i64 for now.The text was updated successfully, but these errors were encountered: