mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-12-26 11:24:35 +00:00
set n_positions to max_positioin_embeddings
This commit is contained in:
parent
a17ef39792
commit
2683611944
@ -105,10 +105,10 @@ block_count = hparams["n_layer"]
|
||||
gguf_writer.add_name("StarCoder")
|
||||
gguf_writer.add_context_length(2048) # not in config.json
|
||||
gguf_writer.add_embedding_length(hparams["n_embd"])
|
||||
gguf_writer.add_max_position_embeddings(hparams["n_positions"])
|
||||
gguf_writer.add_feed_forward_length(4 * hparams["n_embd"])
|
||||
gguf_writer.add_block_count(block_count)
|
||||
gguf_writer.add_head_count(hparams["n_head"])
|
||||
gguf_writer.add_head_count_kv(1)
|
||||
gguf_writer.add_layer_norm_eps(hparams["layer_norm_epsilon"])
|
||||
gguf_writer.add_file_type(ftype)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user