/src/llama.cpp/src/models/gemma-embedding.cpp
Line | Count | Source |
1 | | #include "models.h" |
2 | | |
3 | 0 | void llama_model_gemma_embedding::load_arch_hparams(llama_model_loader & ml) { |
4 | 0 | hparams.swa_type = LLAMA_SWA_TYPE_SYMMETRIC; |
5 | 0 | uint32_t swa_period = 6; |
6 | 0 | ml.get_key_or_arr(LLM_KV_ATTENTION_SLIDING_WINDOW_PATTERN, swa_period, false); |
7 | 0 | hparams.set_swa_pattern(swa_period); |
8 | |
|
9 | 0 | hparams.causal_attn = false; // embeddings do not use causal attention |
10 | |
|
11 | 0 | ml.get_key(LLM_KV_ROPE_FREQ_BASE_SWA, hparams.rope_freq_base_train_swa, false); |
12 | 0 | ml.get_key(LLM_KV_ATTENTION_SLIDING_WINDOW, hparams.n_swa); |
13 | 0 | ml.get_key(LLM_KV_ATTENTION_LAYERNORM_RMS_EPS, hparams.f_norm_rms_eps); |
14 | | |
15 | | //applied only if model converted with --sentence-transformers-dense-modules |
16 | 0 | ml.get_key(LLM_KV_DENSE_2_FEAT_IN, hparams.dense_2_feat_in, false); |
17 | 0 | ml.get_key(LLM_KV_DENSE_2_FEAT_OUT, hparams.dense_2_feat_out, false); |
18 | 0 | ml.get_key(LLM_KV_DENSE_3_FEAT_IN, hparams.dense_3_feat_in, false); |
19 | 0 | ml.get_key(LLM_KV_DENSE_3_FEAT_OUT, hparams.dense_3_feat_out, false); |
20 | |
|
21 | 0 | GGML_ASSERT((hparams.dense_2_feat_in == 0 || hparams.dense_2_feat_in == hparams.n_embd) && "dense_2_feat_in must be equal to n_embd"); |
22 | 0 | GGML_ASSERT((hparams.dense_3_feat_out == 0 || hparams.dense_3_feat_out == hparams.n_embd) && "dense_3_feat_out must be equal to n_embd"); |
23 | |
|
24 | 0 | switch (hparams.n_layer()) { |
25 | 0 | case 24: type = LLM_TYPE_0_3B; break; |
26 | 0 | default: type = LLM_TYPE_UNKNOWN; |
27 | 0 | } |
28 | 0 | hparams.f_attention_scale = 1.0f / std::sqrt(float(hparams.n_embd_head_k())); |
29 | |
|
30 | 0 | } |
31 | | |
32 | 0 | void llama_model_gemma_embedding::load_arch_tensors(llama_model_loader &) { |
33 | 0 | LLAMA_LOAD_LOCALS; |
34 | |
|
35 | 0 | tok_embd = create_tensor(tn(LLM_TENSOR_TOKEN_EMBD, "weight"), {n_embd, n_vocab}, 0); |
36 | | |
37 | | // output |
38 | 0 | output_norm = create_tensor(tn(LLM_TENSOR_OUTPUT_NORM, "weight"), {n_embd}, 0); |
39 | 0 | output = create_tensor(tn(LLM_TENSOR_OUTPUT, "weight"), {n_embd, n_vocab}, TENSOR_NOT_REQUIRED); |
40 | | |
41 | | // if output is NULL, init from the input tok embed |
42 | 0 | if (output == NULL) { |
43 | 0 | output = create_tensor(tn(LLM_TENSOR_TOKEN_EMBD, "weight"), {n_embd, n_vocab}, TENSOR_DUPLICATED); |
44 | 0 | } |
45 | | |
46 | | // Dense linear weights |
47 | 0 | dense_2_out_layers = create_tensor(tn(LLM_TENSOR_DENSE_2_OUT, "weight"), {n_embd, hparams.dense_2_feat_out}, TENSOR_NOT_REQUIRED); |
48 | 0 | dense_3_out_layers = create_tensor(tn(LLM_TENSOR_DENSE_3_OUT, "weight"), {hparams.dense_3_feat_in, n_embd}, TENSOR_NOT_REQUIRED); |
49 | | |
50 | |
|
51 | 0 | for (int i = 0; i < n_layer; ++i) { |
52 | 0 | auto & layer = layers[i]; |
53 | |
|
54 | 0 | layer.attn_norm = create_tensor(tn(LLM_TENSOR_ATTN_NORM, "weight", i), {n_embd}, 0); |
55 | |
|
56 | 0 | create_tensor_qkv(layer, i, n_embd, n_embd_head_k * n_head, n_embd_k_gqa, n_embd_v_gqa, 0); |
57 | 0 | layer.wo = create_tensor(tn(LLM_TENSOR_ATTN_OUT, "weight", i), {n_embd_head_k * n_head, n_embd}, 0); |
58 | |
|
59 | 0 | layer.attn_post_norm = create_tensor(tn(LLM_TENSOR_ATTN_POST_NORM, "weight", i), {n_embd}, 0); |
60 | 0 | layer.attn_k_norm = create_tensor(tn(LLM_TENSOR_ATTN_K_NORM, "weight", i), {n_embd_head_k}, 0); |
61 | 0 | layer.attn_q_norm = create_tensor(tn(LLM_TENSOR_ATTN_Q_NORM, "weight", i), {n_embd_head_k}, 0); |
62 | |
|
63 | 0 | layer.ffn_norm = create_tensor(tn(LLM_TENSOR_FFN_NORM, "weight", i), {n_embd}, 0); |
64 | 0 | layer.ffn_gate = create_tensor(tn(LLM_TENSOR_FFN_GATE, "weight", i), {n_embd, n_ff}, 0); |
65 | 0 | layer.ffn_up = create_tensor(tn(LLM_TENSOR_FFN_UP, "weight", i), {n_embd, n_ff}, 0); |
66 | 0 | layer.ffn_down = create_tensor(tn(LLM_TENSOR_FFN_DOWN, "weight", i), { n_ff, n_embd}, 0); |
67 | 0 | layer.ffn_post_norm = create_tensor(tn(LLM_TENSOR_FFN_POST_NORM, "weight", i), {n_embd}, 0); |
68 | 0 | } |
69 | 0 | } |
70 | | |
71 | 0 | std::unique_ptr<llm_graph_context> llama_model_gemma_embedding::build_arch_graph(const llm_graph_params & params) const { |
72 | 0 | return std::make_unique<graph>(*this, params); |
73 | 0 | } |
74 | | |
75 | | llama_model_gemma_embedding::graph::graph(const llama_model & model, const llm_graph_params & params) : |
76 | 0 | llm_graph_context(params) { |
77 | 0 | const int64_t n_embd_head = hparams.n_embd_head_k(); |
78 | |
|
79 | 0 | ggml_tensor * cur; |
80 | 0 | ggml_tensor * inpL; |
81 | |
|
82 | 0 | inpL = build_inp_embd(model.tok_embd); |
83 | | |
84 | | // important: do not normalize weights for raw embeddings input (i.e. encoded image embeddings) |
85 | 0 | inpL = ggml_scale(ctx0, inpL, ubatch.token ? sqrtf(n_embd) : 1.0f); |
86 | 0 | cb(inpL, "inp_scaled", -1); |
87 | | |
88 | | // inp_pos - contains the positions |
89 | 0 | ggml_tensor * inp_pos = build_inp_pos(); |
90 | |
|
91 | 0 | auto * inp_attn = build_attn_inp_no_cache(); |
92 | |
|
93 | 0 | ggml_tensor * inp_out_ids = build_inp_out_ids(); |
94 | |
|
95 | 0 | for (int il = 0; il < n_layer; ++il) { |
96 | 0 | const float freq_base_l = model.get_rope_freq_base(cparams, il); |
97 | 0 | const float freq_scale_l = model.get_rope_freq_scale(cparams, il); |
98 | | |
99 | | // norm |
100 | 0 | cur = build_norm(inpL, model.layers[il].attn_norm, NULL, LLM_NORM_RMS, il); |
101 | 0 | cb(cur, "attn_norm", il); |
102 | | |
103 | | // self-attention |
104 | 0 | { |
105 | | // compute Q and K and RoPE them |
106 | 0 | auto [Qcur, Kcur, Vcur] = build_qkv(model.layers[il], cur, |
107 | 0 | n_embd_head, n_head, n_head_kv, il); |
108 | |
|
109 | 0 | Qcur = build_norm(Qcur, model.layers[il].attn_q_norm, NULL, LLM_NORM_RMS, il); |
110 | 0 | cb(Qcur, "Qcur_normed", il); |
111 | |
|
112 | 0 | Qcur = ggml_rope_ext(ctx0, Qcur, inp_pos, nullptr, n_rot, rope_type, n_ctx_orig, freq_base_l, freq_scale_l, |
113 | 0 | ext_factor, attn_factor, beta_fast, beta_slow); |
114 | |
|
115 | 0 | Kcur = build_norm(Kcur, model.layers[il].attn_k_norm, NULL, LLM_NORM_RMS, il); |
116 | 0 | cb(Kcur, "Kcur_normed", il); |
117 | |
|
118 | 0 | Kcur = ggml_rope_ext(ctx0, Kcur, inp_pos, nullptr, n_rot, rope_type, n_ctx_orig, freq_base_l, freq_scale_l, |
119 | 0 | ext_factor, attn_factor, beta_fast, beta_slow); |
120 | |
|
121 | 0 | cb(Qcur, "Qcur", il); |
122 | 0 | cb(Kcur, "Kcur", il); |
123 | 0 | cb(Vcur, "Vcur", il); |
124 | | |
125 | | // ref: https://github.com/google/gemma_pytorch/blob/014acb7ac4563a5f77c76d7ff98f31b568c16508/gemma/model.py#L315 |
126 | 0 | Qcur = ggml_scale(ctx0, Qcur, hparams.f_attention_scale); |
127 | |
|
128 | 0 | cur = |
129 | 0 | build_attn(inp_attn, |
130 | 0 | model.layers[il].wo, NULL, model.layers[il].wo_s, |
131 | 0 | Qcur, Kcur, Vcur, nullptr, nullptr, nullptr, 1.0f, il); |
132 | 0 | } |
133 | |
|
134 | 0 | if (il == n_layer - 1 && inp_out_ids) { |
135 | 0 | cur = ggml_get_rows(ctx0, cur, inp_out_ids); |
136 | 0 | inpL = ggml_get_rows(ctx0, inpL, inp_out_ids); |
137 | 0 | } |
138 | |
|
139 | 0 | cur = build_norm(cur, model.layers[il].attn_post_norm, NULL, LLM_NORM_RMS, il); |
140 | 0 | cb(cur, "attn_post_norm", il); |
141 | |
|
142 | 0 | ggml_tensor * sa_out = ggml_add(ctx0, cur, inpL); |
143 | 0 | cb(sa_out, "sa_out", il); |
144 | |
|
145 | 0 | cur = build_norm(sa_out, model.layers[il].ffn_norm, NULL, LLM_NORM_RMS, il); |
146 | 0 | cb(cur, "ffn_norm", il); |
147 | | |
148 | | // feed-forward network |
149 | 0 | { |
150 | 0 | cur = build_ffn(cur, |
151 | 0 | model.layers[il].ffn_up, NULL, NULL, |
152 | 0 | model.layers[il].ffn_gate, NULL, NULL, |
153 | 0 | model.layers[il].ffn_down, NULL, NULL, |
154 | 0 | NULL, LLM_FFN_GELU, LLM_FFN_PAR, il); |
155 | 0 | cb(cur, "ffn_out", il); |
156 | 0 | } |
157 | |
|
158 | 0 | cur = build_norm(cur, model.layers[il].ffn_post_norm, NULL, LLM_NORM_RMS, -1); |
159 | 0 | cb(cur, "ffn_post_norm", -1); |
160 | |
|
161 | 0 | cur = ggml_add(ctx0, cur, sa_out); |
162 | |
|
163 | 0 | cur = build_cvec(cur, il); |
164 | 0 | cb(cur, "l_out", il); |
165 | | |
166 | | // input for next layer |
167 | 0 | inpL = cur; |
168 | 0 | } |
169 | |
|
170 | 0 | cur = inpL; |
171 | |
|
172 | 0 | cur = build_norm(cur, model.output_norm, NULL, LLM_NORM_RMS, -1); |
173 | |
|
174 | 0 | cb(cur, "result_norm", -1); |
175 | 0 | res->t_embd = cur; |
176 | |
|
177 | 0 | ggml_build_forward_expand(gf, cur); |
178 | 0 | } |