In an AI application, what is an embedding at a basic level?
- aA numeric vector that represents the meaning of a piece of text or other data.✓
- bA compressed backup copy of the original document kept for storage efficiency.
- cA hash value used to quickly check whether two documents are exact duplicates.
- dAn index of exact keyword positions built from tokenizing the input text.
Explanation:Embeddings map text (or images, audio, etc.) into a vector space where semantically similar inputs end up close together. A hash (c) is designed to detect exact duplicates, not measure meaning, so it cannot support similarity search the way an embedding can.