Embeddings
Meaning, Examples and How To Compute
What's an embedding?
Embeddings are vector representations of information. (e.g. a list of floating point numbers). With embeddings, the distance between two vectors carry semantic meaning: Small distances suggest high relatedness and large distances suggest low relatedness. Embeddings are everywhere in modern deep learning, such as transformers, recommendation engines, layers of deep neural networks, encoders, and decoders.
A simple example: In an image, a color can be represented as the amount of red, green, blue, and transparency in the form of rgba(255, 255, 255, 0)
. This vector [255, 255, 255, 0] not only encodes information
(the color white) but it carries meaning in space as well. Colors more similar to white are closer to the vector and points farther from this vector are less similar (e.x. black is `[0, 0, 0, 0]`).
Why embeddings
Embeddings are foundational to machine learning because:
Embeddings can represent various forms of data such as images, audio signals, and even large chunks of structured data.
They provide a common mathematical representation of your data
They compress data
They preserve relationships within your data
They are the output of deep learning layers providing comprehensible linear views into complex non-linear relationships learned by models
Embeddings are used for a variety of machine learning problems. To learn more, check out our course here.
How to generate embeddings
Embedding vectors are generally extracted from the activation values of one or many hidden layers of your model. In general, there are many ways of obtaining embedding vectors, including:
Word embeddings
Autoencoder Embeddings
Generative Adversarial Networks (GANs)
Pre-trained Embeddings
Once you have chosen a model to generate embeddings, the question is: how? Here are few use-case based examples. In each example you will notice that the embeddings are generated such that the resulting vector represents your input according to your use case.
If you are working on image classification, the model will take an image and classify it into a given set of categories. Each of our embedding vectors should be representative of the corresponding entire image input.
First, we need to use a feature_extractor
that will take an image and prepare it for the large pre-trained image model.
Then, we pass the results from the feature_extractor
to our model
. In PyTorch, we use torch.no_grad()
since we don't need to compute the gradients for backward propagation, we are not training the model in this example.
It is imperative that these outputs contain the activation values of the hidden layers of the model since you will be using them to construct your embeddings. In this scenario, we will use just the last hidden layer.
Finally, since we want the embedding vector to represent the entire image, we will average across the second dimension, representing the areas of the image.
Last updated