A database built to store embeddings and find the nearest ones fast, which is what makes semantic search practical at scale.
Storing model weights at lower numerical precision to cut memory and speed up inference, trading a little accuracy for a lot of resource.
Also known as: Quantisation
Models are usually trained in 16- or 32-bit floating point. Quantisation converts the weights to a smaller representation — 8-bit or 4-bit integers are common — which shrinks the model proportionally and speeds up inference, because the bottleneck is moving weights rather than multiplying them.
Quality degrades gracefully rather than falling off a cliff: 8-bit is usually indistinguishable, and 4-bit is often acceptable. It is what makes running a capable model on a laptop possible at all.
A database built to store embeddings and find the nearest ones fast, which is what makes semantic search practical at scale.
Running a trained model to get an output — as opposed to training, which is producing the model in the first place.
Training a small model to imitate a large one, keeping most of the capability at a fraction of the cost.
Definitions are reviewed by our editorial team. Spotted a problem? Tell us.