Adding Custom Embeddings
Add custom embeddings to your uploads
Last updated
Was this helpful?
Add custom embeddings to your uploads
Last updated
Was this helpful?
Aquarium uses neural network embeddings to enable features like clustering and similarity search. They can be thought of as lists of numbers that represent the essential visual qualities of an image. By default, Aquarium will try to compute embeddings for you by using our standard neural network, as long as you are not working in .
If you are a customer working in Anonymous mode or you wish to provide your own embeddings, our Python library makes it easy to attach your own values.
Your embeddings need to be:
A vector of up to length 2048
If your embedding vector is longer, contact Aquarium in order to accommodate
If you are adding custom embeddings because you are in Anonymous mode, please add in the flag is_anon_mode
when you call create_dataset()
.
Example:
Aquarium uses the terms frame and crop quite often. With respect to embeddings, think of a frame as the entire image, and think of crop as an object/region of interest.
Example code snippet: