Преглед изворни кода

Qwen2 : assume tied weights if lm_head/output weights is missing (#6738)

Ren Xuancheng пре 1 година
родитељ
комит
e11b2e6e1e
1 измењених фајлова са 7 додато и 1 уклоњено
  1. 7 1
      llama.cpp

+ 7 - 1
llama.cpp

@@ -5184,7 +5184,13 @@ static bool llm_load_tensors(
                     // output
                     // output
                     {
                     {
                         model.output_norm = ml.create_tensor(ctx_output,       tn(LLM_TENSOR_OUTPUT_NORM, "weight"), {n_embd});
                         model.output_norm = ml.create_tensor(ctx_output,       tn(LLM_TENSOR_OUTPUT_NORM, "weight"), {n_embd});
-                        model.output      = ml.create_tensor(ctx_output_split, tn(LLM_TENSOR_OUTPUT,      "weight"), {n_embd, n_vocab});
+                        model.output      = ml.create_tensor(ctx_output_split, tn(LLM_TENSOR_OUTPUT,      "weight"), {n_embd, n_vocab}, false);
+                        // if output is NULL, init from the input tok embed
+                        if (model.output == NULL) {
+                            model.output = ml.create_tensor(ctx_output, tn(LLM_TENSOR_TOKEN_EMBD, "weight"), {n_embd, n_vocab});
+                            ml.n_created--; // artificial tensor
+                            ml.size_data += ggml_nbytes(model.output);
+                        }
                     }
                     }
 
 
                     for (int i = 0; i < n_layer; ++i) {
                     for (int i = 0; i < n_layer; ++i) {