From 8b5f0c506708b06fde1362fc2cbb464222cf44aa Mon Sep 17 00:00:00 2001 From: klosax <131523366+klosax@users.noreply.github.com> Date: Sun, 13 Aug 2023 00:00:32 +0200 Subject: [PATCH] constants.py : n_layer --> n_block --- constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants.py b/constants.py index ae6e719fb..7fa238a73 100644 --- a/constants.py +++ b/constants.py @@ -18,7 +18,7 @@ KEY_GENERAL_SOURCE_HF_REPO = "general.source.hugginface.repository" # LLM KEY_LLM_CONTEXT_LENGTH = "{llm}.context_length" KEY_LLM_EMBEDDING_LENGTH = "{llm}.embedding_length" -KEY_LLM_LAYER_COUNT = "{llm}.layer_count" +KEY_LLM_BLOCK_COUNT = "{llm}.block_count" KEY_LLM_FEED_FORWARD_LENGTH = "{llm}.feed_forward_length" KEY_LLM_USE_PARALLEL_RESIDUAL = "{llm}.use_parallel_residual" KEY_LLM_TENSOR_DATA_LAYOUT = "{llm}.tensor_data_layout"