model.go 5.27 KB
Newer Older
Michael Yang's avatar
Michael Yang committed
1
2
3
package model

import (
Jesse Gross's avatar
Jesse Gross committed
4
	"errors"
Michael Yang's avatar
Michael Yang committed
5
6
7
8
9
10
11
12
13
14
15
16
17
18
	"fmt"
	"image"
	_ "image/jpeg"
	_ "image/png"
	"log/slog"
	"os"
	"reflect"
	"strconv"
	"strings"

	_ "golang.org/x/image/bmp"
	_ "golang.org/x/image/tiff"
	_ "golang.org/x/image/webp"

Jesse Gross's avatar
Jesse Gross committed
19
	"github.com/ollama/ollama/kvcache"
Michael Yang's avatar
Michael Yang committed
20
21
22
23
	"github.com/ollama/ollama/ml"
	_ "github.com/ollama/ollama/ml/backend"
)

24
// Options contains the inputs for a model forward pass
Michael Yang's avatar
Michael Yang committed
25
type Options struct {
Jesse Gross's avatar
Jesse Gross committed
26
27
28
29
	Inputs    []int32
	Positions []int32
	Sequences []int
	Outputs   []int32
Michael Yang's avatar
Michael Yang committed
30
31
32
33

	Images []image.Image
}

Jesse Gross's avatar
Jesse Gross committed
34
35
type config struct {
	Cache kvcache.Cache
Michael Yang's avatar
Michael Yang committed
36
37
}

38
// Base implements the common fields and methods for all models
Michael Yang's avatar
Michael Yang committed
39
40
type Base struct {
	b ml.Backend
Jesse Gross's avatar
Jesse Gross committed
41
	config
Michael Yang's avatar
Michael Yang committed
42
43
}

44
// Backend returns the underlying backend that will run the model
Michael Yang's avatar
Michael Yang committed
45
46
47
48
func (m *Base) Backend() ml.Backend {
	return m.b
}

Jesse Gross's avatar
Jesse Gross committed
49
50
51
52
func (m *Base) Config() config {
	return m.config
}

53
// Model implements a specific model architecture, defining the forward pass and any model-specific configuration
Michael Yang's avatar
Michael Yang committed
54
55
56
57
type Model interface {
	Forward(ml.Context, Options) (ml.Tensor, error)

	Backend() ml.Backend
Jesse Gross's avatar
Jesse Gross committed
58
	Config() config
Michael Yang's avatar
Michael Yang committed
59
60
61
62
}

var models = make(map[string]func(ml.Config) (Model, error))

63
// Register registers a model constructor for the given architecture
Michael Yang's avatar
Michael Yang committed
64
65
66
67
68
69
70
71
func Register(name string, f func(ml.Config) (Model, error)) {
	if _, ok := models[name]; ok {
		panic("model: model already registered")
	}

	models[name] = f
}

72
73
74
// New initializes a new model instance with the provided configuration based on the metadata in the model file
func New(modelPath string) (Model, error) {
	r, err := os.Open(modelPath)
Michael Yang's avatar
Michael Yang committed
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
	if err != nil {
		return nil, err
	}
	defer r.Close()

	b, err := ml.NewBackend(r)
	if err != nil {
		return nil, err
	}

	arch := b.Config().Architecture()
	f, ok := models[arch]
	if !ok {
		return nil, fmt.Errorf("unsupported model architecture %q", arch)
	}

	m, err := f(b.Config())
	if err != nil {
		return nil, err
	}

Jesse Gross's avatar
Jesse Gross committed
96
97
	base := Base{b: b, config: m.Config()}

Michael Yang's avatar
Michael Yang committed
98
	v := reflect.ValueOf(m)
Jesse Gross's avatar
Jesse Gross committed
99
	v.Elem().Set(populateFields(base, v.Elem()))
Michael Yang's avatar
Michael Yang committed
100
101
102
	return m, nil
}

Jesse Gross's avatar
Jesse Gross committed
103
func populateFields(base Base, v reflect.Value, tags ...Tag) reflect.Value {
Michael Yang's avatar
Michael Yang committed
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
	t := v.Type()

	if t.Kind() == reflect.Struct {
		allNil := true
		for i := range t.NumField() {
			tt := t.Field(i).Type
			vv := v.Field(i)
			if !vv.CanSet() {
				continue
			}

			// make a copy
			tagsCopy := tags
			if tag := t.Field(i).Tag.Get("gguf"); tag != "" {
				tagsCopy = append(tagsCopy, ParseTags(tag))
			}

			if tt == reflect.TypeOf((*Base)(nil)).Elem() {
Jesse Gross's avatar
Jesse Gross committed
122
				vv.Set(reflect.ValueOf(base))
Michael Yang's avatar
Michael Yang committed
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
			} else if tt == reflect.TypeOf((*ml.Tensor)(nil)).Elem() {
				var fn func([]Tag) [][]string
				fn = func(tags []Tag) (values [][]string) {
					if len(tags) < 1 {
						return nil
					}

					values = [][]string{{tags[0].Name}}
					for _, alt := range tags[0].Alternate {
						values = append(values, []string{alt})
					}

					for i, value := range values {
						for _, rest := range fn(tags[1:]) {
							value = append(value, rest...)
						}

						values[i] = value
					}

					return values
				}

				names := fn(tagsCopy)
				for _, name := range names {
Jesse Gross's avatar
Jesse Gross committed
148
					if tensor := base.Backend().Get(strings.Join(name, ".")); tensor != nil {
Michael Yang's avatar
Michael Yang committed
149
150
151
152
153
						slog.Debug("found tensor", "", tensor)
						vv.Set(reflect.ValueOf(tensor))
						break
					}
				}
154
			} else if tt.Kind() == reflect.Pointer || tt.Kind() == reflect.Interface {
Jesse Gross's avatar
Jesse Gross committed
155
				setPointer(base, vv, tagsCopy)
Michael Yang's avatar
Michael Yang committed
156
157
			} else if tt.Kind() == reflect.Slice || tt.Kind() == reflect.Array {
				for i := range vv.Len() {
158
159
					vvv := vv.Index(i)
					if vvv.Kind() == reflect.Pointer || vvv.Kind() == reflect.Interface {
Jesse Gross's avatar
Jesse Gross committed
160
						setPointer(base, vvv, append(tagsCopy, Tag{Name: strconv.Itoa(i)}))
161
					} else {
Jesse Gross's avatar
Jesse Gross committed
162
						vvv.Set(populateFields(base, vvv, append(tagsCopy, Tag{Name: strconv.Itoa(i)})...))
163
					}
Michael Yang's avatar
Michael Yang committed
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
				}
			}

			if !canNil(tt) || !vv.IsNil() {
				allNil = false
			}
		}

		if allNil {
			return reflect.Zero(t)
		}
	}

	return v
}

Jesse Gross's avatar
Jesse Gross committed
180
func setPointer(base Base, v reflect.Value, tags []Tag) {
181
182
183
184
185
186
187
188
189
190
191
192
193
194
	vv := v
	if v.Kind() == reflect.Interface {
		if v.IsNil() {
			return
		}

		vv = vv.Elem()
	}

	vv = vv.Elem()
	if v.IsNil() {
		vv = reflect.New(v.Type().Elem()).Elem()
	}

Jesse Gross's avatar
Jesse Gross committed
195
	if f := populateFields(base, vv, tags...); f.CanAddr() {
196
197
198
199
		v.Set(f.Addr())
	}
}

Michael Yang's avatar
Michael Yang committed
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
type Tag struct {
	Name      string
	Alternate []string
}

func ParseTags(s string) (tag Tag) {
	parts := strings.Split(s, ",")
	if len(parts) > 0 {
		tag.Name = parts[0]

		for _, part := range parts[1:] {
			if value, ok := strings.CutPrefix(part, "alt:"); ok {
				tag.Alternate = append(tag.Alternate, value)
			}
		}
	}

	return
}

func canNil(t reflect.Type) bool {
	return t.Kind() == reflect.Chan ||
		t.Kind() == reflect.Func ||
		t.Kind() == reflect.Interface ||
		t.Kind() == reflect.Map ||
		t.Kind() == reflect.Pointer ||
		t.Kind() == reflect.Slice
}

Jesse Gross's avatar
Jesse Gross committed
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
func Forward(ctx ml.Context, m Model, opts Options) (ml.Tensor, error) {
	if len(opts.Positions) != len(opts.Sequences) {
		return nil, fmt.Errorf("length of positions (%v) must match length of seqs (%v)", len(opts.Positions), len(opts.Sequences))
	}

	if len(opts.Positions) < 1 {
		return nil, errors.New("batch size cannot be less than 1")
	}

	cache := m.Config().Cache
	if cache != nil {
		err := cache.StartForward(ctx, opts.Positions, opts.Sequences)
		if err != nil {
			return nil, err
		}
Michael Yang's avatar
Michael Yang committed
244
245
246
247
248
249
250
	}

	t, err := m.Forward(ctx, opts)
	if err != nil {
		return nil, err
	}

251
252
253
254
	ctx.Forward(t)
	ctx.Compute(t)

	return t, nil
Michael Yang's avatar
Michael Yang committed
255
}