Skip to content

Commit c93300f

Browse files
committed
squash! baby-llama : rename llama_layer to baby_llama_layer
Rename baby_llama_layer to gpt_layer.
1 parent 0940460 commit c93300f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/baby-llama/baby-llama.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ struct llama_hparams_lora {
105105
}
106106
};
107107

108-
struct baby_llama_layer {
108+
struct gpt_layer {
109109
// normalization
110110
struct ggml_tensor * attention_norm;
111111

@@ -169,7 +169,7 @@ struct llama_model {
169169
struct ggml_tensor * norm;
170170
struct ggml_tensor * output;
171171

172-
std::vector<baby_llama_layer> layers;
172+
std::vector<gpt_layer> layers;
173173
};
174174

175175
struct llama_model_lora {

0 commit comments

Comments
 (0)