Unit 4 - Practice Quiz

INT396 60 Questions
0 Correct 0 Wrong 60 Left
0/60

1 What is the primary goal of dimensionality reduction in machine learning?

Need for Dimensionality Reduction Easy
A. To change continuous variables into categorical variables
B. To increase the number of features in a dataset
C. To automatically label unlabeled data
D. To reduce the number of features while retaining the most important information

2 Which term describes the phenomenon where data becomes exceedingly sparse as the number of features increases, negatively impacting model performance?

Need for Dimensionality Reduction Easy
A. The Manifold Hypothesis
B. Overfitting Factor
C. The Curse of Dimensionality
D. Feature Explosion

3 How does dimensionality reduction generally affect the computational time of machine learning algorithms?

Need for Dimensionality Reduction Easy
A. It makes the training time unpredictable.
B. It has no effect on training time.
C. It significantly increases training time.
D. It decreases training time by reducing the amount of data to process.

4 What mathematical property does Principal Component Analysis (PCA) aim to maximize when finding new axes?

Linear Dimensionality Reduction Techniques (PCA – Geometric Intuition) Easy
A. Correlation between features
B. Sparsity of the data
C. Number of outliers
D. Variance of the data

5 In PCA, the principal components are geometrically related in what specific way?

Linear Dimensionality Reduction Techniques (PCA – Geometric Intuition) Easy
A. They are randomly oriented.
B. They are orthogonal (perpendicular) to each other.
C. They are parallel to each other.
D. They form a 45-degree angle with the original axes.

6 What type of transformation does PCA perform on the data?

Linear Dimensionality Reduction Techniques (PCA – Geometric Intuition) Easy
A. Non-linear transformation
B. Linear transformation
C. Logarithmic transformation
D. Polynomial transformation

7 Which principal component captures the most information (variance) from the original dataset?

Linear Dimensionality Reduction Techniques (PCA – Geometric Intuition) Easy
A. The second principal component
B. The last principal component
C. The first principal component
D. The median principal component

8 What is the core assumption of the 'Manifold Hypothesis' in representation learning?

Manifold Learning Overview Easy
A. High-dimensional data actually lies on or near a lower-dimensional manifold embedded within the high-dimensional space.
B. All datasets are completely linear and require simple scaling.
C. Higher dimensions always provide better separation of data classes.
D. Data can only be modeled properly using neural networks.

9 Which of the following is a classic "toy dataset" often used to demonstrate manifold learning techniques?

Manifold Learning Overview Easy
A. The Titanic dataset
B. The Boston Housing dataset
C. The Swiss Roll dataset
D. The Iris dataset

10 Why might a data scientist choose a manifold learning algorithm over PCA?

Manifold Learning Overview Easy
A. Because PCA is a supervised learning technique.
B. Because PCA is always slower than manifold learning algorithms.
C. Because manifold learning increases the dimensions, solving the curse of dimensionality.
D. Because PCA only captures linear relationships, while manifold learning can capture complex, non-linear structures.

11 What is the most common use case for t-SNE (t-Distributed Stochastic Neighbor Embedding)?

Non-Linear Dimensionality Reduction Concepts - t-SNE Easy
A. Compressing images for storage
B. Predicting future stock prices
C. Extracting features for linear regression models
D. Visualizing high-dimensional data in 2D or 3D space

12 Does t-SNE prioritize preserving local or global structure of the data?

Non-Linear Dimensionality Reduction Concepts - t-SNE Easy
A. It prioritizes preserving local structure (keeping similar data points close together).
B. It perfectly preserves the exact pairwise distances of all points globally.
C. It prioritizes preserving global structure over local structure.
D. It ignores both structures and places points randomly.

13 What does the 't' in t-SNE stand for?

Non-Linear Dimensionality Reduction Concepts - t-SNE Easy
A. Time-series
B. Tensor
C. Student's t-distribution
D. Transformational

14 What does UMAP stand for?

UMAP – Conceptual Easy
A. Unified Model for Automated Processing
B. Uniform Manifold Approximation and Projection
C. Universal Machine Algorithm Predictor
D. Unsupervised Mapping and Partitioning

15 Which is a widely recognized advantage of UMAP over t-SNE?

UMAP – Conceptual Easy
A. UMAP can only reduce data to a single dimension.
B. UMAP requires labeled data to function.
C. UMAP is generally faster and preserves global structure better than t-SNE.
D. UMAP is strictly a linear model.

16 Like t-SNE, UMAP is fundamentally what type of dimensionality reduction technique?

UMAP – Conceptual Easy
A. Linear dimensionality reduction
B. Non-linear dimensionality reduction (manifold learning)
C. Decision tree-based feature selection
D. Supervised classification technique

17 What are the two main functional components of an Autoencoder?

Autoencoder Intuition Easy
A. Encoder and Decoder
B. Generator and Discriminator
C. Convolution and Pooling
D. Actor and Critic

18 In an Autoencoder used for dimensionality reduction, what is the 'bottleneck'?

Autoencoder Intuition Easy
A. The hidden layer with the smallest number of nodes, representing the compressed data
B. The input layer with the highest number of nodes
C. The final output layer of the decoder
D. The loss function used for optimization

19 What is the primary objective of a basic Autoencoder during training?

Autoencoder Intuition Easy
A. To maximize the variance of the input data
B. To predict future values in a sequence
C. To reconstruct its own input data at the output layer
D. To classify data into predefined categories

20 An Autoencoder learns a representation without requiring manual labels. This falls under which category of machine learning?

Autoencoder Intuition Easy
A. Unsupervised (or Self-Supervised) Learning
B. Supervised Learning
C. Reinforcement Learning
D. Active Learning

21 Which of the following best describes the geometric impact of the 'Curse of Dimensionality' on distance-based algorithms like k-Nearest Neighbors?

Need for Dimensionality Reduction Medium
A. As dimensions increase, all points converge to a single spatial coordinate.
B. As dimensions increase, the ratio of the distance to the nearest neighbor to the distance of the farthest neighbor approaches 1.
C. As dimensions increase, the variance of the data linearly decreases.
D. As dimensions increase, the Euclidean distance between points approaches zero.

22 How does dimensionality reduction help in mitigating the Hughes phenomenon in machine learning models?

Need for Dimensionality Reduction Medium
A. By replacing missing values with the mean of the principal components.
B. By reducing the feature space, thereby decreasing the likelihood of overfitting when the number of training samples is limited.
C. By increasing the number of features to artificially boost training accuracy.
D. By converting continuous numerical features into discrete categories.

23 If a dataset has highly collinear features, what is the primary benefit of applying a dimensionality reduction technique?

Need for Dimensionality Reduction Medium
A. It eliminates collinearity by creating orthogonal or independent representations of the original features.
B. It allows the model to map the data to a higher-dimensional space to find a linear boundary.
C. It increases the absolute magnitude of the feature weights.
D. It completely removes the need to normalize or scale the data before modeling.

24 Geometrically, what does the first principal component (PC1) represent in PCA?

Linear Dimensionality Reduction Techniques (PCA – Geometric Intuition) Medium
A. The direction in space along which the data has the minimum variance.
B. The centroid of the data points in the original high-dimensional space.
C. The vector that is orthogonal to the direction of maximum variance.
D. The direction in space that minimizes the orthogonal projection distance of the data points to that line.

25 Suppose you apply PCA to a 3D dataset shaped exactly like a hollow sphere. What will the eigenvalues of the first three principal components look like?

Linear Dimensionality Reduction Techniques (PCA – Geometric Intuition) Medium
A. The first eigenvalue will be much larger than the other two.
B. The first two eigenvalues will be large and equal, and the third will be zero.
C. All three eigenvalues will be approximately equal.
D. The first eigenvalue will be zero, and the other two will be equal.

26 Why is it crucial to mean-center and scale data (e.g., using standard scaling) before applying PCA?

Linear Dimensionality Reduction Techniques (PCA – Geometric Intuition) Medium
A. To ensure that the covariance matrix is an identity matrix.
B. Because PCA is sensitive to the scale of the features; variables with larger scales will dominate the principal components.
C. To convert non-linear relationships into linear ones before finding orthogonal vectors.
D. Because PCA cannot be computed on matrices containing negative numbers.

27 If a dataset forms a highly curved 'Swiss Roll' shape in 3D space, why might PCA perform poorly when reducing it to 2D?

Linear Dimensionality Reduction Techniques (PCA – Geometric Intuition) Medium
A. PCA will automatically convert the continuous values into discrete clusters, destroying the roll structure.
B. PCA requires the data to have exactly zero variance in the third dimension.
C. PCA relies on gradient descent, which gets stuck in local minima on curved surfaces.
D. PCA attempts to map the data to a 2D Euclidean subspace, which will overlap points from different layers of the roll.

28 What is the fundamental assumption underlying manifold learning algorithms?

Manifold Learning Overview Medium
A. Any high-dimensional dataset can be losslessly compressed into exactly two dimensions.
B. High-dimensional data actually lies on or near a lower-dimensional, potentially non-linear surface embedded within the high-dimensional space.
C. High-dimensional data can be accurately clustered using only Euclidean distance from the origin.
D. High-dimensional data consists purely of independent, uniformly distributed random variables.

29 In the context of manifold learning, how does 'geodesic distance' differ from 'Euclidean distance'?

Manifold Learning Overview Medium
A. Geodesic distance measures the shortest path along the curved surface of the manifold, whereas Euclidean distance cuts straight through the ambient space.
B. Geodesic distance is only applicable to linear subspaces, whereas Euclidean distance is used for curved manifolds.
C. Geodesic distance is the straight-line distance in the high-dimensional space, while Euclidean distance is the shortest path along the manifold.
D. There is no difference; they are mathematically equivalent in all dimensionality reduction techniques.

30 Which of the following is a primary reason why manifold learning techniques are preferred over linear methods for complex datasets?

Manifold Learning Overview Medium
A. They map the data to a higher-dimensional space where classes are linearly separable.
B. They are able to capture and unroll non-linear relationships that linear projections would overlap or distort.
C. They guarantee a globally convex optimization problem with no hyperparameters.
D. They calculate projections much faster than linear methods using singular value decomposition.

31 How does t-SNE solve the 'crowding problem' that often occurs in standard SNE?

Non-Linear Dimensionality Reduction Concepts - t-SNE Medium
A. By performing PCA first and restricting the t-SNE projection to the top 2 principal components.
B. By utilizing a Student's t-distribution with one degree of freedom in the low-dimensional space to model similarities.
C. By strictly penalizing the distance between faraway points using an L1 regularization term.
D. By using a Gaussian distribution in the low-dimensional space and a Cauchy distribution in the high-dimensional space.

32 In t-SNE, the cost function minimizes the Kullback-Leibler (KL) divergence between two probability distributions. What do these distributions represent?

Non-Linear Dimensionality Reduction Concepts - t-SNE Medium
A. The Euclidean distances and the Cosine similarities of the data points.
B. The variance of the high-dimensional features and the variance of the low-dimensional projection.
C. The pairwise similarities of data points in the high-dimensional space and the low-dimensional space.
D. The prior and posterior probabilities of the cluster centroids.

33 What is the role of the 'perplexity' parameter in t-SNE?

Non-Linear Dimensionality Reduction Concepts - t-SNE Medium
A. It dictates the number of iterations the gradient descent algorithm will run.
B. It acts as a continuous measure of the effective number of nearest neighbors each point has, balancing attention between local and global aspects.
C. It defines the degrees of freedom for the Student's t-distribution used in the low-dimensional space.
D. It sets the learning rate for the KL divergence optimization.

34 When interpreting a t-SNE plot, which of the following statements is generally true regarding the distances between distinct clusters?

Non-Linear Dimensionality Reduction Concepts - t-SNE Medium
A. The size (spread) of a cluster in a t-SNE plot is proportional to its variance in the high-dimensional space.
B. The global distances between distant clusters in a t-SNE plot are often meaningless and highly dependent on initialization.
C. Clusters that are close together in the t-SNE plot are mathematically guaranteed to be close in high-dimensional space.
D. The distance between clusters accurately reflects their absolute distance in the high-dimensional space.

35 Conceptually, how does UMAP handle the balance between local and global structure compared to t-SNE?

UMAP – Conceptual Medium
A. UMAP completely ignores global structure to compute projections faster than t-SNE.
B. UMAP preserves global structure by using linear combinations of features, whereas t-SNE uses non-linear combinations.
C. UMAP requires users to explicitly label global clusters, making it a supervised learning algorithm.
D. UMAP uses cross-entropy as a cost function and different initialization, often preserving more global structure than t-SNE.

36 Which two main hyperparameters control the geometry of the UMAP projection?

UMAP – Conceptual Medium
A. Number of neighbors (n_neighbors) and Minimum distance (min_dist).
B. Number of components and Maximum iterations.
C. Learning rate and Momentum.
D. Perplexity and Epsilon.

37 If you increase the min_dist parameter in UMAP, what visual effect will it likely have on the resulting embedding?

UMAP – Conceptual Medium
A. The algorithm will fall back to performing standard Principal Component Analysis.
B. The embedding will look more spread out, preventing points from bunching up too closely.
C. The clusters will become extremely tight, with points overlapping each other.
D. The number of dimensions of the output will increase.

38 In a standard autoencoder used for dimensionality reduction, what is the primary purpose of the 'bottleneck' layer?

Autoencoder Intuition Medium
A. To introduce noise into the input data to prevent the model from overfitting.
B. To classify the input data into predefined categories directly without a decoder.
C. To force the network to learn a compressed, lower-dimensional latent representation of the input data.
D. To increase the dimensionality of the data so that non-linear relations become linearly separable.

39 If an autoencoder has strictly linear activation functions and uses Mean Squared Error (MSE) loss, its bottleneck layer will learn a representation that spans the same subspace as which other technique?

Autoencoder Intuition Medium
A. Principal Component Analysis (PCA)
B. t-SNE
C. K-Means Clustering
D. UMAP

40 Why is the reconstruction loss essential in training an autoencoder?

Autoencoder Intuition Medium
A. It quantifies how well the decoder can rebuild the original input from the compressed latent representation.
B. It measures the classification error of the labels provided in the dataset.
C. It calculates the distance between the encoded representations to maximize cluster separation.
D. It ensures that the weights of the encoder and decoder remain orthogonal.

41 Let and be the maximum and minimum Euclidean distances from a randomly selected query point to a set of points uniformly distributed in a -dimensional hypercube. As the dimension , what is the limiting behavior of the relative contrast ?

Need for Dimensionality Reduction Hard
A. It diverges to .
B. It converges to $0$.
C. It converges to a constant strictly dependent on the data's variance.
D. It converges to $1$.

42 Consider a -dimensional multivariate Gaussian distribution with a zero mean and an identity covariance matrix. As becomes very large, where is the vast majority of the probability mass located geometrically?

Need for Dimensionality Reduction Hard
A. Highly concentrated strictly at the origin, which is the mode of the distribution.
B. In a thin spherical shell (annulus) at a distance of approximately from the origin.
C. Uniformly distributed throughout the -dimensional hypercube enclosing the distribution.
D. Along the axes of the standard basis vectors, forming a sparse star-like shape.

43 You apply Principal Component Analysis (PCA) on a data matrix . If you deliberately do NOT mean-center the data prior to computing the covariance matrix surrogate , how does the first principal component (PC1) geometrically behave?

Linear Dimensionality Reduction Techniques (PCA – Geometric Intuition) Hard
A. PC1 remains mathematically identical to the centered case, but the corresponding eigenvalue will be uniformly shifted by the magnitude of the mean.
B. PC1 will point approximately towards the mean vector of the dataset, effectively capturing the distance from the origin rather than the direction of maximum variance.
C. PC1 will be strictly orthogonal to the mean vector of the dataset.
D. The matrix becomes rank-deficient, preventing the extraction of PC1.

44 Let be the thin Singular Value Decomposition (SVD) of a centered data matrix . How can the ratio of variance explained by the first principal components be mathematically expressed?

Linear Dimensionality Reduction Techniques (PCA – Geometric Intuition) Hard
A.
B.
C.
D.

45 Which of the following generative assumptions mathematically guarantees that standard PCA will recover the true underlying lower-dimensional representation of a dataset?

Linear Dimensionality Reduction Techniques (PCA – Geometric Intuition) Hard
A. The data lies on an isometric Riemannian manifold where geodesic distance is proportional to Euclidean distance.
B. The dataset has extremely high variance along non-linear curves, and its covariance matrix is strictly full rank.
C. The features of the dataset are strictly independent and follow a continuous uniform distribution.
D. The data is generated from a lower-dimensional affine subspace with added isotropic Gaussian noise.

46 If the covariance matrix of a dataset has a condition number , what is the strict geometric implication for PCA?

Linear Dimensionality Reduction Techniques (PCA – Geometric Intuition) Hard
A. The dataset is perfectly isotropic (spherical), making all principal directions equally valid.
B. The dataset lies entirely within a lower-dimensional hyperplane, meaning at least one principal component will capture exactly zero variance.
C. The intrinsic dimensionality of the data is strictly equal to its extrinsic dimensionality.
D. The data contains extreme, infinitely distant outliers that permanently distort the principal components.

47 In Kernel PCA using an RBF (Gaussian) kernel , how does the dimension of the mapped feature space fundamentally affect the extraction of principal components?

Linear Dimensionality Reduction Techniques (PCA – Geometric Intuition) Hard
A. The number of principal components extracted is directly determined by the hyperparameter , regardless of dataset size.
B. The feature space is infinite-dimensional, but the maximum number of non-zero principal components is strictly bounded by the number of data points .
C. The feature space dimension is explicitly computed, restricting Kernel PCA to be performed only in time.
D. The feature space maps the data to a maximum of dimensions, allowing polynomial time extraction of components.

48 Manifold learning relies heavily on neighborhood graphs. Which of the following is a critical edge-case vulnerability when defining neighborhoods using -nearest neighbors (-NN) as opposed to an -radius graph?

Manifold Learning Overview Hard
A. -radius graphs guarantee a fully connected graph regardless of data density, while -NN naturally isolates outliers.
B. -NN graphs fail completely on non-convex manifolds, whereas -radius graphs are mathematically invariant to manifold convexity.
C. -NN can falsely connect distant regions of the manifold (short-circuiting) if the sampling density varies wildly, whereas -radius graphs might yield disconnected components in sparse regions.
D. -NN graphs are always undirected by default, while -radius graphs are naturally directed due to asymmetric distance calculations.

49 Consider Isomap and Locally Linear Embedding (LLE). Which of the following statements mathematically contrasts their core structure preservation objectives?

Manifold Learning Overview Hard
A. Isomap minimizes a cross-entropy loss based on topological neighborhood probabilities, whereas LLE maximizes the variance of the projected data subject to orthogonality constraints.
B. Isomap preserves the exact Euclidean distances for all pairs in the dataset, whereas LLE only preserves Euclidean distances for the -nearest neighbors.
C. Isomap assumes the manifold is globally linear and applies SVD, whereas LLE models the manifold using a global high-degree polynomial function.
D. Isomap seeks to globally preserve approximated geodesic distances using Multidimensional Scaling, whereas LLE seeks to preserve local barycentric coordinates used to reconstruct each point from its neighbors.

50 In Spectral Embedding (Laplacian Eigenmaps), the objective is to minimize subject to . Mathematically, this is equivalent to finding the eigenvectors associated with:

Manifold Learning Overview Hard
A. The largest eigenvalues of the unnormalized graph Laplacian .
B. The smallest non-zero eigenvalues of the normalized graph Laplacian .
C. The smallest eigenvalues of the local covariance matrix .
D. The largest eigenvalues of the adjacency matrix .

51 In t-SNE, the gradient of the Kullback-Leibler divergence with respect to the mapped points dictates the dynamics of the embedding. What primarily governs the repulsive force between two points and in this low-dimensional space?

Non-Linear Dimensionality Reduction Concepts - t-SNE Hard
A. The perplexity parameter , which directly scales the repulsive strength inversely proportional to the local data density.
B. The degree of freedom of the Student t-distribution, which acts as a hard threshold, clipping the repulsion at a fixed radial distance.
C. The exact Euclidean distance in the high-dimensional space, which explicitly pushes distant points infinitely far apart.
D. The heavy-tailed Student t-distribution , which causes the repulsion to act universally across all points based on low-dimensional proximity, regardless of their high-dimensional distance.

52 Why is t-SNE theoretically prone to creating artificial, tight clusters when applied to a dataset consisting entirely of uniformly distributed random noise?

Non-Linear Dimensionality Reduction Concepts - t-SNE Hard
A. Uniform noise has an intrinsic dimensionality of zero, which t-SNE handles by projecting all points onto the surface of a hypersphere.
B. The heavy tails of the Student-t distribution cause all points to be repelled equally, forcing them into a strict, crystalline lattice structure.
C. The Gaussian kernel used in the high-dimensional space mathematically forces the overall variance of the random noise to collapse to exactly zero.
D. The KL divergence penalty is asymmetric; it heavily penalizes placing high-dimensional neighbors far apart, but is highly lenient if distant noise points are placed close together, allowing arbitrary clumps to form.

53 If you naively set the perplexity parameter in t-SNE to a value strictly greater than the total number of data points , what mathematical failure occurs during the calculation of the high-dimensional similarities ?

Non-Linear Dimensionality Reduction Concepts - t-SNE Hard
A. The binary search for the variance fails to converge because the required Shannon entropy exceeds the maximum theoretically possible entropy of the discrete distribution ().
B. The similarities evaluate to exactly 1 for all pairs, causing the KL divergence loss function to equal zero before optimization begins.
C. The variance converges to exactly zero, transforming the neighborhood graph into a completely disconnected set of nodes.
D. The algorithm defaults to standard PCA behavior because the probability matrix immediately becomes a perfectly sparse diagonal matrix.

54 In Barnes-Hut t-SNE, the computational complexity is reduced from to . Which mathematical approximation fundamentally enables this massive reduction in complexity?

Non-Linear Dimensionality Reduction Concepts - t-SNE Hard
A. Using a truncated Singular Value Decomposition (SVD) on the high-dimensional probability matrix before gradient descent optimization.
B. Replacing the Student t-distribution with a uniform distribution for points whose distance exceeds a hyperparameter threshold .
C. Ignoring the repulsive forces entirely for points that are strictly outside the predefined -nearest neighbors graph.
D. Grouping spatially distant points into a single center of mass using a spatial tree (quadtree/octree) to compute aggregate repulsive forces.

55 UMAP utilizes a Cross-Entropy loss function to optimize its low-dimensional embeddings, setting it apart from t-SNE. How does this specific loss function fundamentally allow UMAP to better preserve global structure?

UMAP – Conceptual Hard
A. It contains a term which explicitly penalizes placing high-dimensional distant points close together in the low-dimensional space.
B. It uses a symmetric Gaussian distribution in both the high and low-dimensional spaces, avoiding the geometric distortion introduced by heavy tails.
C. It completely eliminates repulsive forces entirely, allowing global distances to be determined strictly by a deterministic eigenvalue decomposition.
D. It enforces a strict metric constraint that the low-dimensional Euclidean distances must perfectly match the high-dimensional geodesic distances.

56 UMAP's theoretical foundation relies on the assumption that data is uniformly distributed across a Riemannian manifold. Since real-world data density is highly variable, how does UMAP mathematically enforce this uniform assumption?

UMAP – Conceptual Hard
A. By assuming the ambient space is inherently hyperbolic and mapping all points onto the surface of a Poincaré disk.
B. By deliberately injecting uniform Gaussian noise into the high-dimensional dataset prior to computing the topological simplicial complex.
C. By defining a custom Riemannian metric around each data point where the distance to its nearest neighbor is locally normalized to be constant.
D. By performing an initial manifold unrolling using a global algorithm like Isomap to evenly distribute the data in the ambient space.

57 What role does the min_dist hyperparameter play in UMAP's low-dimensional optimization, and how does it manifest mathematically in the low-dimensional probability function ?

UMAP – Conceptual Hard
A. It acts as a hard threshold in the high-dimensional space; any points closer than min_dist are permanently merged into a single topological simplex.
B. It strictly determines the learning rate decay schedule during the Stochastic Gradient Descent optimization of the cross-entropy loss.
C. It defines a plateau in the low-dimensional distance function , controlling how tightly points are allowed to pack together before repulsion scales sharply.
D. It sets the absolute minimum Euclidean distance required between any two disconnected topological components in the final embedding graph.

58 Consider a shallow Linear Autoencoder (a single hidden layer, linear activations, trained to minimize MSE) and standard PCA applied to the same dataset. Which of the following accurately describes the mathematical relationship between the Autoencoder's bottleneck weights and the PCA principal components?

Autoencoder Intuition Hard
A. The Autoencoder implicitly enforces an norm constraint during gradient descent, resulting in a sparse subspace unlike the dense PCA components.
B. The Autoencoder will inevitably converge to arbitrary local minima, causing to capture a subspace completely orthogonal to the PCA components.
C. The row space of spans the exact same principal subspace as the top- PCA components, but the individual rows of are not necessarily orthogonal or variance-ordered.
D. The rows of will mathematically converge to the exact same ordered and strictly orthogonal eigenvectors found by the PCA covariance matrix.

59 According to manifold learning theory, when you train a Denoising Autoencoder (DAE) by corrupting inputs to and reconstructing them, what is the geometric interpretation of the learned vector field ?

Autoencoder Intuition Hard
A. It perfectly aligns with the principal eigenvectors of the global covariance matrix, always pointing along the manifold's flattest linear dimensions.
B. It calculates the exact geodesics of the manifold by strictly minimizing the path integral of the Euclidean distance between and .
C. It approximates the score function (gradient of the log-density, ) of the data distribution, effectively pointing corrupted points toward the highest density regions on the manifold.
D. It maps out a set of strictly orthogonal basis functions that define the null space (the zero-variance directions) of the data manifold.

60 A Contractive Autoencoder (CAE) introduces a penalty term , where is the Jacobian matrix of the encoder activations with respect to the input. What is the fundamental representation learning goal of this specific regularization?

Autoencoder Intuition Hard
A. To ensure the decoder generates an output whose dimensionality is strictly greater than the input, encouraging an overcomplete and entangled representation.
B. To force the learned representation to be insensitive to small local variations in the input space, ensuring features only change along the manifold while remaining flat in orthogonal directions.
C. To align the bottleneck activations with a standard Gaussian uniform distribution by minimizing the Kullback-Leibler divergence to a prior.
D. To strictly force the weights of the network to become sparse, mathematically minimizing the number of active hidden neurons for any given input.