Which NLP technique maps each word to a dense vector where semantically similar words are geometrically close in the vector space?
Select an answer to reveal the explanation.
Short Explanation and Infographic
Here's the deal — c is correct because word embeddings like Word2Vec and GloVe learn dense, low-dimensional vectors where geometrically similar positions correspond to semantically related words. A (one-hot) is sparse and captures no semantic similarity.
Full explanation below image
Full Explanation
C is correct because word embeddings like Word2Vec and GloVe learn dense, low-dimensional vectors where geometrically similar positions correspond to semantically related words. A (one-hot) is sparse and captures no semantic similarity. B (bag-of-words) represents documents, not words, with no semantic relationships. D (TF-IDF) is a document-level term weighting scheme.