gguf.py : n_layer --> n_block

This commit is contained in:
klosax 2023-08-13 00:01:20 +02:00 committed by GitHub
parent 8b5f0c5067
commit d2ce9cfe8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -253,9 +253,9 @@ class GGUFWriter:
self.add_uint32(
constants.KEY_LLM_EMBEDDING_LENGTH.format(llm=llm), length)
def add_layer_count(self, llm: str, length: int):
def add_block_count(self, llm: str, length: int):
self.add_uint32(
constants.KEY_LLM_LAYER_COUNT.format(llm=llm), length)
constants.KEY_LLM_BLOCK_COUNT.format(llm=llm), length)
def add_feed_forward_length(self, llm: str, length: int):
self.add_uint32(