D.As a database table containing every sentence in the corpus
Correct Answer: As a numerical vector
Explanation:
A vector space model represents each word as a point or vector in a multidimensional numerical space.
Incorrect! Try again.
2In a vector space model, what does each dimension commonly represent?
Vector space models
Easy
A.A numerical feature
B.A punctuation rule
C.A neural network layer used only to store labels
D.A complete paragraph
Correct Answer: A numerical feature
Explanation:
Each dimension stores a numerical feature that contributes to the representation of a word or document.
Incorrect! Try again.
3What is a dense word embedding?
Dense word embeddings
Easy
A.A table that maps sentences directly to grammar rules
B.A long vector with mostly zero values
C.A short vector with mostly nonzero values
D.A list containing only word frequencies
Correct Answer: A short vector with mostly nonzero values
Explanation:
Dense embeddings use relatively low-dimensional vectors in which most values are nonzero.
Incorrect! Try again.
4What is one advantage of dense embeddings over one-hot vectors?
Dense word embeddings
Easy
A.They preserve the exact position of every word in every document
B.They always require more dimensions
C.They assign words identical vectors
D.They can encode semantic relationships
Correct Answer: They can encode semantic relationships
Explanation:
Dense embeddings can place words with related meanings near one another in the vector space.
Incorrect! Try again.
5What is Word2Vec primarily used to learn?
Word2Vec
Easy
A.Handwritten rules for parsing every possible sentence
B.Word embeddings
C.Sentence punctuation
D.Document file formats
Correct Answer: Word embeddings
Explanation:
Word2Vec learns numerical vector representations of words from their surrounding context.
Incorrect! Try again.
6Which two architectures are associated with Word2Vec?
Word2Vec
Easy
A.CBOW and Skip-Gram
B.PCA and t-SNE
C.GloVe and a large manually constructed dictionary of synonyms
D.CNN and pooling
Correct Answer: CBOW and Skip-Gram
Explanation:
Word2Vec is commonly implemented using either the CBOW architecture or the Skip-Gram architecture.
Incorrect! Try again.
7What does CBOW predict during training?
CBOW
Easy
A.A target word from context words
B.Context words from a target word
C.The full grammatical structure of an entire document
D.A sentence from one character
Correct Answer: A target word from context words
Explanation:
CBOW uses the surrounding context words to predict the word that appears in the middle.
Incorrect! Try again.
8What does the abbreviation CBOW stand for?
CBOW
Easy
A.Context-Based Ordered Words
B.Combined Batch of Words
C.Continuous Bag of Words
D.Continuous Binary Output Weights for language modeling
Correct Answer: Continuous Bag of Words
Explanation:
CBOW stands for Continuous Bag of Words.
Incorrect! Try again.
9What does a Skip-Gram model predict?
Skip-Gram models
Easy
A.A target word from context words
B.Word length from character count
C.A complete translation using only the punctuation marks
D.Context words from a target word
Correct Answer: Context words from a target word
Explanation:
Skip-Gram takes a target word as input and predicts words that are likely to occur around it.
Incorrect! Try again.
10If the target word is "coffee", what would Skip-Gram try to learn from a nearby word such as "cup"?
Skip-Gram models
Easy
A.That "cup" must replace "coffee"
B.That "cup" can occur near "coffee"
C.That both words have equal lengths
D.That every sentence containing "coffee" must end with "cup"
Correct Answer: That "cup" can occur near "coffee"
Explanation:
Skip-Gram learns associations between a target word and words found in its surrounding context.
Incorrect! Try again.
11What does GloVe stand for?
GloVe embeddings
Easy
A.General Language Output
B.Global Vectors
C.Grouped Vocabulary
D.Globally Validated Linguistic Output Vector Encoding
Correct Answer: Global Vectors
Explanation:
GloVe stands for Global Vectors for Word Representation.
Incorrect! Try again.
12What type of information does GloVe mainly use to learn embeddings?
GloVe embeddings
Easy
A.Only alphabetical word order
B.Global word co-occurrence statistics
C.A manually written semantic definition for every word
D.Only sentence punctuation counts
Correct Answer: Global word co-occurrence statistics
Explanation:
GloVe learns from statistics describing how often words occur together across a corpus.
Incorrect! Try again.
13In a well-trained embedding space, how are semantically similar words usually positioned?
Capturing semantic similarity
Easy
A.Close together
B.In separate spaces created from the spelling of each word
C.Far apart
D.At the origin
Correct Answer: Close together
Explanation:
Words with similar meanings generally have vectors that are close to one another.
Incorrect! Try again.
14Which measure is commonly used to compare the similarity of two word vectors?
Capturing semantic similarity
Easy
A.Cosine similarity
B.The number of documents stored in the training directory
C.Sentence length
D.Character count
Correct Answer: Cosine similarity
Explanation:
Cosine similarity compares the directions of two vectors and is commonly used to measure embedding similarity.
Incorrect! Try again.
15Which pair would most likely have high semantic similarity in an embedding space?
Capturing semantic similarity
Easy
A.car and banana
B.car and a detailed rule describing plural noun formation
C.car and automobile
D.car and quickly
Correct Answer: car and automobile
Explanation:
"Car" and "automobile" have similar meanings, so their embedding vectors are likely to be close.
Incorrect! Try again.
16Which word best completes the analogy "king is to queen as man is to ___"?
Analogy relationships
Easy
A.a person who rules a large country from a royal residence
B.palace
C.child
D.woman
Correct Answer: woman
Explanation:
The relationship between "king" and "queen" is analogous to the relationship between "man" and "woman".
Incorrect! Try again.
17Which vector expression is commonly associated with the analogy "king - man + woman"?
Analogy relationships
Easy
A.A vector near "prince"
B.A vector representing every royal title in the training corpus
C.A vector near "castle"
D.A vector near "queen"
Correct Answer: A vector near "queen"
Explanation:
Embedding arithmetic can encode relationships, so may produce a vector near .
Incorrect! Try again.
18Why are PCA and t-SNE used with word embeddings?
Visualizing embedding spaces using PCA or t-SNE
Easy
A.To increase the number of dimensions
B.To translate words into another language
C.To replace all learned vectors with fixed one-hot encodings
D.To reduce dimensions for visualization
Correct Answer: To reduce dimensions for visualization
Explanation:
PCA and t-SNE map high-dimensional embeddings into two or three dimensions so they can be visualized.
Incorrect! Try again.
19What type of method is PCA?
Visualizing embedding spaces using PCA or t-SNE
Easy
A.A word prediction architecture
B.A linear dimensionality reduction method
C.A nonlinear method designed exclusively for generating text
D.A global co-occurrence model
Correct Answer: A linear dimensionality reduction method
Explanation:
PCA is a linear technique that projects data onto directions capturing high variance.
Incorrect! Try again.
20What is t-SNE especially useful for showing in a two-dimensional embedding plot?
Visualizing embedding spaces using PCA or t-SNE
Easy
A.Exact word frequency counts
B.Local clusters of similar words
C.The original vector dimensions
D.A guaranteed preservation of every global distance in the dataset
Correct Answer: Local clusters of similar words
Explanation:
t-SNE is useful for displaying local neighborhoods, where related word vectors may appear as visible clusters.
Incorrect! Try again.
21A corpus-based retrieval system represents documents using TF-IDF vectors. Why will the term "photosynthesis" receive a higher weight in a document than the term "the"?
Vector space models
Medium
A.It has more characters than most other terms
B.It is rare in the document but frequent across the corpus
C.It is frequent in the document but rare across the corpus
D.It appears near the beginning of the document
Correct Answer: It is frequent in the document but rare across the corpus
Explanation:
TF-IDF gives high weight to terms that are important within a document but uncommon across the document collection.
Incorrect! Try again.
22A vocabulary contains 50,000 words. One model uses one-hot vectors, while another uses 300-dimensional dense embeddings. What is the main representational advantage of the dense embeddings?
Dense word embeddings
Medium
A.They guarantee correct meanings for unseen words
B.They encode similarity using far fewer dimensions
C.They assign a unique dimension to every word
D.They eliminate the need to train model parameters
Correct Answer: They encode similarity using far fewer dimensions
Explanation:
Dense embeddings use a compact set of learned features, allowing related words to have similar vectors without requiring one dimension per vocabulary item.
Incorrect! Try again.
23After training Word2Vec, the embeddings of "doctor" and "nurse" are close even though the words rarely appear next to each other. Which observation best explains this result?
Word2Vec
Medium
A.They have nearly identical corpus frequencies
B.They tend to occur in similar linguistic contexts
C.They occupy nearby positions in the vocabulary
D.They contain a similar number of characters
Correct Answer: They tend to occur in similar linguistic contexts
Explanation:
Word2Vec follows the distributional principle: words appearing in similar contexts tend to acquire similar vector representations.
Incorrect! Try again.
24For the sentence "the cat sleeps on the mat" with target word "sleeps" and context window size 2, which input-output pair is used by CBOW?
CBOW uses the surrounding context words to predict the center word. A window of 2 includes the two words on each side when available.
Incorrect! Try again.
25For the sentence "deep models learn useful features" with center word "learn" and context window size 1, which training pairs are produced by Skip-Gram?
Skip-Gram models
Medium
A.("models", "learn") and ("useful", "learn")
B.("learn", "models") and ("learn", "useful")
C.("models", "useful") and ("deep", "features")
D.("learn", "deep") and ("learn", "features")
Correct Answer: ("learn", "models") and ("learn", "useful")
Explanation:
Skip-Gram uses the center word as input and predicts each word within its context window.
Incorrect! Try again.
26A Word2Vec model has a vocabulary of one million words. Why is negative sampling commonly used during training?
Word2Vec
Medium
A.It converts dense embedding vectors into sparse vectors
B.It avoids computing a full softmax over the vocabulary
C.It removes every infrequent word from the training corpus
D.It fixes the embedding dimensions before optimization
Correct Answer: It avoids computing a full softmax over the vocabulary
Explanation:
Negative sampling updates the positive word-context pair and a small set of sampled negative pairs, reducing the cost of a full-vocabulary softmax.
Incorrect! Try again.
27Which corpus statistic is used most directly when training GloVe embeddings?
GloVe embeddings
Medium
A.Sentence labels assigned by annotators
B.Character-level edit distances between words
C.Document lengths measured in tokens
D.Global word-context co-occurrence counts
Correct Answer: Global word-context co-occurrence counts
Explanation:
GloVe learns vectors from a matrix of global word-context co-occurrence statistics gathered from the corpus.
Incorrect! Try again.
28Two normalized word vectors are and . What is their cosine similarity?
Capturing semantic similarity
Medium
A.
B.
C.
D.
Correct Answer:
Explanation:
Because both vectors have unit norm, cosine similarity is their dot product: .
Incorrect! Try again.
29Which vector expression is typically used to solve the analogy "Paris is to France as Tokyo is to ___"?
Analogy relationships
Medium
A.
B.
C.
D.
Correct Answer:
Explanation:
The offset approximates a capital-to-country relation. Adding it to should produce a vector near .
Incorrect! Try again.
30A researcher wants a two-dimensional embedding plot that preserves as much global variance as possible and gives reproducible results without random initialization. Which method is more appropriate?
Visualizing embedding spaces using PCA or t-SNE
Medium
A.PCA
B.Negative sampling
C.t-SNE
D.Skip-Gram
Correct Answer: PCA
Explanation:
PCA is a deterministic linear projection that selects directions of maximum variance, making it suitable for examining broad global structure.
Incorrect! Try again.
31In a t-SNE plot, two clusters appear far apart. Which conclusion is most defensible?
Visualizing embedding spaces using PCA or t-SNE
Medium
A.Every pairwise distance has been preserved by the projection
B.Local neighborhoods may be meaningful, but cluster distance may not be
C.The clusters must represent completely unrelated semantic categories
D.The clusters are equally distant in the original embedding space
Correct Answer: Local neighborhoods may be meaningful, but cluster distance may not be
Explanation:
t-SNE emphasizes local neighborhood structure. Distances between separated clusters in the visualization may not reflect original high-dimensional distances.
Incorrect! Try again.
32A Skip-Gram model is retrained with a larger context window. What change is most likely in the learned similarities?
Skip-Gram models
Medium
A.Words with related topics become more likely to be similar
B.Words outside each sentence receive exactly equal vectors
C.Words with identical spellings become the only close neighbors
D.Words are represented using fewer embedding dimensions
Correct Answer: Words with related topics become more likely to be similar
Explanation:
Larger windows capture broader topical context, while smaller windows tend to emphasize local syntactic or functional similarity.
Incorrect! Try again.
33A single pretrained embedding for "bank" is used in both "river bank" and "bank loan". What limitation does this demonstrate?
Dense word embeddings
Medium
A.A cosine score cannot compare two word vectors
B.A one-hot vector is required for ambiguous words
C.A static vector merges multiple senses of a word
D.A dense vector cannot represent frequent vocabulary words
Correct Answer: A static vector merges multiple senses of a word
Explanation:
Traditional static embeddings assign one vector to each word type, so different meanings of an ambiguous word are combined into one representation.
Incorrect! Try again.
34A nearest-neighbor system uses raw dot products between word embeddings whose norms vary greatly. Long-norm vectors dominate the results. Which change best focuses the comparison on vector direction?
Capturing semantic similarity
Medium
A.Increase every embedding dimension by the same constant
B.Normalize the vectors and use cosine similarity
C.Replace each vector with its largest coordinate
D.Sort the words by frequency before comparing them
Correct Answer: Normalize the vectors and use cosine similarity
Explanation:
Cosine similarity compares the angle between vectors. Normalization prevents vector magnitude from dominating the similarity score.
Incorrect! Try again.
35Why does the GloVe objective use a weighting function for word-context co-occurrence counts?
GloVe embeddings
Medium
A.To remove context words that occur only once
B.To make every vocabulary word equally frequent
C.To limit the influence of extremely common co-occurrences
D.To force all co-occurrence counts to become binary
Correct Answer: To limit the influence of extremely common co-occurrences
Explanation:
The weighting function balances evidence from different counts and prevents very frequent co-occurrences from overwhelming the objective.
Incorrect! Try again.
36Two CBOW examples contain the same context words in different orders. If the model averages context embeddings, how will their context representations compare?
CBOW
Medium
A.They will differ because averaging preserves word positions
B.They will be orthogonal because the orders are reversed
C.They will be identical because averaging ignores order
D.They will be sparse because the context has multiple words
Correct Answer: They will be identical because averaging ignores order
Explanation:
Basic CBOW combines context embeddings using a sum or average, so it behaves like a bag-of-words model and does not preserve context order.
Incorrect! Try again.
37A corpus contains many rare technical terms. Compared with CBOW, why might Skip-Gram produce better representations for those terms?
Skip-Gram models
Medium
A.It creates several prediction pairs from each center-word occurrence
B.It assigns rare terms vectors without any training
C.It predicts the center word from one averaged context
D.It replaces every rare term with a common synonym
Correct Answer: It creates several prediction pairs from each center-word occurrence
Explanation:
Skip-Gram predicts multiple surrounding words from each center word, providing several training signals even when the center word is relatively rare.
Incorrect! Try again.
38Documents and have cosine similarity , while documents and have cosine similarity . What is the best interpretation?
Vector space models
Medium
A. and have more similar term distributions
B. is necessarily longer than both other documents
C. and contain exactly the same terms
D. contains more unique words than
Correct Answer: and have more similar term distributions
Explanation:
A larger cosine similarity indicates that two document vectors point in more similar directions and therefore have more similar weighted term patterns.
Incorrect! Try again.
39Suppose is close to . What relationship has the embedding space most likely captured?
Analogy relationships
Medium
A.A base-verb to present-participle relationship
B.A singular-noun to plural-noun relationship
C.A country to capital-city relationship
D.A positive-word to negative-word relationship
Correct Answer: A base-verb to present-participle relationship
Explanation:
Similar vector offsets can encode recurring linguistic relations. Both pairs represent the transformation from a base verb to its present participle.
Incorrect! Try again.
40A researcher has 300-dimensional embeddings for 200,000 words and wants to apply t-SNE efficiently. Which preprocessing strategy is commonly appropriate?
Visualizing embedding spaces using PCA or t-SNE
Medium
A.Duplicate each embedding before running the projection
B.Replace each vector with its original corpus frequency
C.Use PCA first to reduce to a moderate number of dimensions
D.Convert every embedding into a one-hot vocabulary vector
Correct Answer: Use PCA first to reduce to a moderate number of dimensions
Explanation:
Applying PCA first can remove noise and reduce computational cost before t-SNE constructs a two-dimensional neighborhood-based visualization.
Incorrect! Try again.
41A corpus contains the terms bank, river, and loan. In a count-based vector space model, bank has high co-occurrence counts with both river and loan, while river and loan rarely co-occur. Which limitation is most directly illustrated?
Vector space models
Hard
A.The model always assigns identical vectors to synonyms
B.The model cannot compare vectors with cosine similarity
C.The model may conflate unrelated senses of a polysemous word
D.The model cannot represent word frequency
Correct Answer: The model may conflate unrelated senses of a polysemous word
Explanation:
A single vector for bank aggregates contexts from its financial and geographical senses, potentially placing it near both domains without distinguishing them.
Incorrect! Try again.
42Two word vectors have the same Euclidean norm, but one vector contains a large common-frequency component shared by many words. Which transformation most directly reduces the influence of that shared component when measuring lexical similarity?
Vector space models
Hard
A.Duplicate the common-frequency component
B.Replace each vector with its word frequency
C.Use cosine similarity after centering the vectors
D.Use Euclidean distance without normalization
Correct Answer: Use cosine similarity after centering the vectors
Explanation:
Centering removes a dominant global direction, and cosine similarity then compares the remaining orientation rather than magnitude or shared frequency structure.
Incorrect! Try again.
43A dense embedding has dimension , and its training corpus contains distinct word types. Which statement best explains why the embedding is not merely a compressed one-hot representation?
Dense word embeddings
Hard
A.Each word still occupies exactly one independent coordinate
B.The vectors are learned so dimensions encode distributed context patterns
C.The vectors preserve every original co-occurrence count exactly
D.The embedding guarantees one unique dimension for every word
Correct Answer: The vectors are learned so dimensions encode distributed context patterns
Explanation:
Dense embeddings use distributed representations: many dimensions jointly encode latent semantic and syntactic regularities, rather than assigning one coordinate to each vocabulary item.
Incorrect! Try again.
44A rare word appears only in contexts associated with a frequent synonym. During embedding training, which outcome is most plausible, assuming the rare word receives enough updates to be retained?
Dense word embeddings
Hard
A.Its vector is determined only by its spelling
B.Its vector must become orthogonal to the synonym vector
C.Its vector becomes exactly equal to the synonym vector
D.Its vector can approach the synonym vector but remains data- and optimization-dependent
Correct Answer: Its vector can approach the synonym vector but remains data- and optimization-dependent
Explanation:
Similar contextual evidence can produce nearby vectors, but finite data, initialization, optimization, and other contexts prevent exact equality from being guaranteed.
Incorrect! Try again.
45In the negative-sampling objective for a positive pair , the model maximizes and adds noise terms. If the noise distribution is changed from uniform to a unigram distribution raised to the power , what is the primary effect?
Word2Vec
Hard
A.The positive pair is replaced by independent positive pairs
B.The noise distribution balances frequent and rare words more effectively
C.Rare words are excluded from the noise distribution
D.Frequent words are sampled less often than under uniform sampling
Correct Answer: The noise distribution balances frequent and rare words more effectively
Explanation:
The power flattens the unigram distribution: frequent words remain common negatives, but their dominance is reduced relative to raw unigram sampling.
Incorrect! Try again.
46Why can two independently trained Word2Vec models have excellent intrinsic similarity scores while their raw vector coordinates differ substantially?
Word2Vec
Hard
A.Word2Vec stores vectors as unordered frequency lists
B.Similarity scores ignore all relationships among words
C.The objective is invariant to certain transformations of the embedding space
D.The models must use different vocabulary encodings
Correct Answer: The objective is invariant to certain transformations of the embedding space
Explanation:
Rotations and related coordinate transformations can preserve dot products or cosine relationships, so coordinate-wise comparison across runs is generally inappropriate without alignment.
Incorrect! Try again.
47A CBOW model predicts a center word from the average of its surrounding context vectors. If one context word is highly frequent and semantically uninformative, which modification most directly reduces its disproportionate training influence?
CBOW
Hard
A.Remove negative sampling from the objective
B.Increase the context window for every example
C.Replace the average with a one-hot center vector
D.Apply subsampling to frequent words
Correct Answer: Apply subsampling to frequent words
Explanation:
Subsampling frequent tokens reduces redundant training examples and prevents highly frequent, weakly informative words from dominating context representations.
Incorrect! Try again.
48Consider a CBOW model using the sum of context embeddings to predict the target. Compared with a model using the average, what changes when the context window contains twice as many tokens, assuming the embeddings are unchanged?
CBOW
Hard
A.The input direction always becomes orthogonal to the original
B.The input magnitude generally increases under the sum
C.The target vocabulary is automatically doubled
D.The model receives no additional contextual signal
Correct Answer: The input magnitude generally increases under the sum
Explanation:
Summation accumulates contributions without length normalization, so larger windows can produce larger input norms and correspondingly different gradient scales.
Incorrect! Try again.
49For a fixed corpus and number of center words, which training pattern usually creates more prediction pairs in Skip-Gram than in CBOW?
Skip-Gram models
Hard
A.Each sentence is represented by one vocabulary vector
B.One context aggregate is predicted from each target
C.Each center word predicts multiple context words separately
D.Only the most frequent context word is retained
Correct Answer: Each center word predicts multiple context words separately
Explanation:
Skip-Gram forms a separate center-to-context prediction for each context token, whereas CBOW aggregates the context to make one prediction.
Incorrect! Try again.
50A corpus contains many rare technical terms, and the training budget is limited. Why might Skip-Gram be preferred over CBOW for learning those terms?
Skip-Gram models
Hard
A.Skip-Gram predicts context words from each center word and can provide stronger signals for rare centers
B.Skip-Gram shares one update across all rare terms
C.Skip-Gram represents every word with a separate vocabulary dimension
D.Skip-Gram never uses negative examples
Correct Answer: Skip-Gram predicts context words from each center word and can provide stronger signals for rare centers
Explanation:
Skip-Gram directly trains a rare center word against several observed contexts, often making it more effective for infrequent words than context-averaging approaches.
Incorrect! Try again.
51In Skip-Gram with negative sampling, a positive pair has a dot product that is already very large and positive. What is the likely training behavior for that positive term?
Skip-Gram models
Hard
A.Its label changes from positive to negative
B.Its sigmoid gradient becomes small
C.Its sigmoid gradient becomes maximal
D.Its context vector is removed from the vocabulary
Correct Answer: Its sigmoid gradient becomes small
Explanation:
For a positive pair, the gradient is proportional to . When the dot product is large, the sigmoid is near one and the gradient saturates.
Incorrect! Try again.
52GloVe uses a weighted least-squares objective over word-context co-occurrence counts. Why is a weighting function useful?
GloVe embeddings
Hard
A.It converts every count into a binary label
B.It makes all unseen pairs contribute equally
C.It prevents extremely frequent pairs from dominating while retaining informative counts
D.It removes the need for word and context bias terms
Correct Answer: It prevents extremely frequent pairs from dominating while retaining informative counts
Explanation:
GloVe downweights very large co-occurrence counts, while a zero weight for unobserved pairs avoids treating all absent pairs as equally informative.
Incorrect! Try again.
53The idealized GloVe relation is . Why does the logarithm help model co-occurrence information?
GloVe embeddings
Hard
A.It forces all context probabilities to become uniform
B.It preserves huge count differences without compression
C.It converts multiplicative count relationships into additive relationships
D.It makes the objective independent of vocabulary size
Correct Answer: It converts multiplicative count relationships into additive relationships
Explanation:
Logarithms turn products and ratios in co-occurrence statistics into sums and differences, which can be represented naturally by dot products and bias terms.
Incorrect! Try again.
54Suppose two words have identical rows in a co-occurrence matrix but different overall corpus frequencies. Which modeling component can account for part of their difference in GloVe?
GloVe embeddings
Hard
A.A mandatory orthogonality constraint
B.The removal of all zero entries
C.The word and context bias terms
D.The t-SNE perplexity parameter
Correct Answer: The word and context bias terms
Explanation:
GloVe bias terms capture systematic effects related to word and context frequencies, so identical local patterns need not imply identical fitted representations.
Incorrect! Try again.
55Two word vectors have cosine similarity , but their nearest neighbors are dominated by words from the same document genre. What is the most defensible interpretation?
Capturing semantic similarity
Hard
A.The similarity may reflect shared topical or corpus-specific usage
B.The vectors must have equal Euclidean norms
C.The words are guaranteed to be synonyms
D.The embedding has no information about word meaning
Correct Answer: The similarity may reflect shared topical or corpus-specific usage
Explanation:
Distributional similarity captures contextual relatedness, which can arise from topic, genre, or association rather than strict synonymy.
Incorrect! Try again.
56A similarity benchmark contains many rare words, but the embedding was trained on a small corpus. Which evaluation issue is most important to inspect before interpreting a low score?
Capturing semantic similarity
Hard
A.Whether every vector has exactly one nonzero coordinate
C.Whether rare words have reliable representations and sufficient counts
D.Whether the benchmark contains only antonym pairs
Correct Answer: Whether rare words have reliable representations and sufficient counts
Explanation:
Sparse evidence produces noisy or poorly estimated vectors, so low similarity performance may reflect coverage and estimation quality rather than a failure of the semantic objective.
Incorrect! Try again.
57For the analogy Paris : France :: Tokyo : ?, the standard vector-offset method ranks candidates using . Which failure mode is especially plausible?
Analogy relationships
Hard
A.The result is guaranteed to identify a capital city
B.The method requires all words to have identical spellings
C.The method cannot perform vector addition
D.The result can be biased by the individual words' neighborhood frequencies
Correct Answer: The result can be biased by the individual words' neighborhood frequencies
Explanation:
Offset analogy accuracy can be affected by vector norms, frequency, and neighborhood structure; the algebraic relation does not guarantee the intended answer.
Incorrect! Try again.
58A gender analogy benchmark shows that is not parallel to . Which conclusion is justified?
Analogy relationships
Hard
A.Cosine similarity cannot be computed for the vocabulary
B.The embedding contains no syntactic information
C.The embedding fails to encode every possible relation
D.The particular relation is not represented by a single consistent offset
Correct Answer: The particular relation is not represented by a single consistent offset
Explanation:
Analogy offsets are empirical regularities, not mathematical guarantees. Nonparallel offsets indicate that this relation may vary across lexical pairs or be entangled with other properties.
Incorrect! Try again.
59A researcher applies PCA to centered word vectors and plots the first two components. Which statement is correct?
Visualizing embedding spaces using PCA or t-SNE
Hard
A.PCA removes frequency and syntactic information automatically
B.PCA chooses orthogonal directions capturing maximum projected variance
C.PCA guarantees that semantic clusters remain separated
D.PCA preserves all pairwise cosine similarities exactly
Correct Answer: PCA chooses orthogonal directions capturing maximum projected variance
Explanation:
PCA finds orthogonal linear directions that maximize variance successively. A two-dimensional projection can distort distances and does not guarantee semantic separation.
Incorrect! Try again.
60Two t-SNE plots of the same embeddings produce different global arrangements after changing the random seed. Which interpretation is most appropriate?
Visualizing embedding spaces using PCA or t-SNE
Hard
A.Every local neighborhood in both plots must be identical
B.Global distances and orientations should be interpreted cautiously
C.The plot with larger clusters is necessarily more accurate
D.The embedding changed because t-SNE rewrites the original vectors
Correct Answer: Global distances and orientations should be interpreted cautiously
Explanation:
t-SNE emphasizes local neighborhood preservation and is stochastic; global spacing, cluster sizes, and orientation are not generally reliable semantic measurements.
Incorrect! Try again.
Did this save you a night before the exam?
LPU Notes is free, and it stays free. Ads cover part of the server bill.
The rest comes out of a student's own pocket: the domain, the storage,
and keeping the site up through the weeks everyone needs it at once.
The payment button didn't load. An ad blocker or a filtered network is the usual reason.
to try again.
Nothing here is ever locked, and nothing unlocks. Chip in only if it was worth it.
What it pays for →