This commit is contained in:
nicole pardal 2025-11-26 20:05:25 -08:00
parent fd959fbf7a
commit 064ec63ddf
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ func (p *olmoModel) KV(t *Tokenizer) ggml.KV {
}
func (p *olmoModel) Tensors(ts []Tensor) []*ggml.Tensor {
var out []*ggml.Tensor
out := make([]*ggml.Tensor, 0, len(ts))
for _, t := range ts {
out = append(out, &ggml.Tensor{
Name: t.Name(),