mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-12-28 12:24:35 +00:00
gguf.py : n_layer --> n_block
This commit is contained in:
parent
8b5f0c5067
commit
d2ce9cfe8d
4
gguf.py
4
gguf.py
@ -253,9 +253,9 @@ class GGUFWriter:
|
|||||||
self.add_uint32(
|
self.add_uint32(
|
||||||
constants.KEY_LLM_EMBEDDING_LENGTH.format(llm=llm), length)
|
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(
|
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):
|
def add_feed_forward_length(self, llm: str, length: int):
|
||||||
self.add_uint32(
|
self.add_uint32(
|
||||||
|
Loading…
Reference in New Issue
Block a user