mirror of
https://github.com/ollama/ollama.git
synced 2025-03-19 14:21:57 +01:00
12 lines
232 B
Go
12 lines
232 B
Go
|
package nn
|
||
|
|
||
|
import "github.com/ollama/ollama/ml"
|
||
|
|
||
|
type Embedding struct {
|
||
|
Weight ml.Tensor `gguf:"weight"`
|
||
|
}
|
||
|
|
||
|
func (m *Embedding) Forward(ctx ml.Context, hiddenState ml.Tensor) ml.Tensor {
|
||
|
return m.Weight.Rows(ctx, hiddenState)
|
||
|
}
|