ThatQuiz Test Library Take this test now
COELE1-2
Contributed by: Billo
  • 1. "Mini-batch Gradient Descent" is often preferred because it:
A) Is only applicable to linear models.
B) Offers a balance between the efficiency of batch GD and the robustness of SGD.
C) Does not require a loss function.
D) Is guaranteed to converge faster than any other method.
  • 2. "Transfer Learning" in deep learning involves:
A) Training a model from scratch on every new problem.
B) Taking a model pre-trained on a large dataset (e.g., ImageNet) and fine-tuning it for a new, specific task with a smaller dataset.
C) Forgetting everything a model has learned.
D) Using only unsupervised learning techniques.
  • 3. An "Autoencoder" is a type of neural network primarily used for:
A) Unsupervised learning tasks like dimensionality reduction and data denoising.b
B) Reinforcement learning.
C) Supervised classification of images.
D) Predicting continuous values in a regression task.
  • 4. The architecture of a typical autoencoder consists of:
A) A convolutional layer followed by an RNN layer.
B) Only a single layer of perceptrons.
C) A single output neuron with a linear activation.
D) An encoder that compresses the input and a decoder that reconstructs the input from the compression.
  • 5. In the context of model evaluation for classification, "Accuracy" is defined as:
A) The proportion of total predictions that were correct.
B) The harmonic mean of precision and recall.
C) The proportion of positive identifications that were actually correct.
D) The proportion of actual positives that were identified correctly.
  • 6. "Precision" is an important metric when:
A) You need a single metric that combines precision and recall.
B) The cost of false negatives is high (e.g., in disease screening, where you don't want to miss a sick patient).
C) The cost of false positives is high (e.g., in spam detection, where you don't want to flag legitimate emails as spam).
D) You are evaluating a regression model.
  • 7. "Recall" is an important metric when:
A) The cost of false positives is high (e.g., in spam detection).
B) The cost of false negatives is high (e.g., in disease screening, where you don't want to miss a sick patient).
C) You are evaluating a clustering model.
D) You need a single metric that combines precision and recall.
  • 8. The "F1 Score" is:
A) The difference between precision and recall.
B) A metric used exclusively for regression.
C) The harmonic mean of precision and recall, providing a single score that balances both concerns.
D) The arithmetic mean of precision and recall.
  • 9. For a regression model, the "Mean Squared Error" (MSE) measures:
A) The total number of misclassified instances.
B) The variance of the input features.
C) The accuracy of a classification model.
D) The average of the squares of the errors between predicted and actual values.
  • 10. The "ROC Curve" is a tool used to evaluate:
A) The performance of a binary classification model at various classification thresholds.
B) The clustering quality of a K-means algorithm.
C) The loss of a regression model over time.
D) The architecture of a neural network.
  • 11. "Area Under the ROC Curve" (AUC) provides an aggregate measure of performance across all possible classification thresholds. A perfect model has an AUC of:
A) 0.5.
B) 1.0.
C) -1.0.
D) 0.0.
  • 12. "K-fold Cross-Validation" is a technique used to:
A) Replace the need for a separate test set.
B) Visualize high-dimensional data.
C) Obtain a more robust estimate of model performance by training and evaluating the model K times on different splits of the data.
D) Increase the size of the training dataset.
  • 13. In the K-Nearest Neighbors (K-NN) algorithm for classification, the class of a new data point is determined by:
A) A random selection from the training set.
B) The output of a linear function.u
C) The majority vote among its K closest neighbors in the feature space.
D) A single, pre-defined rule.
  • 14. The parameter 'K' in the K-NN algorithm:
A) Is always set to 1 for the best performance.
B) Is the learning rate for the algorithm.
C) Controls the model's flexibility. A small K can lead to overfitting, while a large K can lead to underfitting.
D) Is the number of features in the dataset.
  • 15. "Principal Component Analysis" (PCA) works by:
A) Predicting a target variable using linear combinations of features.
B) Clustering data into K groups.
C) Finding new, uncorrelated dimensions (principal components) that capture the maximum variance in the data.u
D) Classifying data using a decision boundary.
  • 16. The first principal component in PCA is the direction in the feature space that:
A) Captures the greatest possible variance in the data.
B) Is randomly oriented.
C) Captures the least possible variance in the data.
D) Is perpendicular to all other components.
  • 17. "K-Means Clustering" aims to partition data into K clusters such that:
A) The data is projected onto a single dimension.
B) The data is perfectly classified into known labels.
C) The between-cluster variance is minimized.
D) The within-cluster variance is minimized.
  • 18. The "Elbow Method" is a heuristic used in K-Means to:
A) Help choose the optimal number of clusters K by looking for a "bend" in the plot of within-cluster variance.
B) Initialize the cluster centroids.
C) Determine the learning rate for gradient descent.
D) Evaluate the accuracy of a classification model.
  • 19. "Naive Bayes" classifiers are called "naive" because they:
A) Make a strong (naive) assumption that all features are conditionally independent given the class label.
B) Always have the lowest possible accuracy.
C) Do not use probability in their predictions.
D) Are very simple and cannot handle complex data.
  • 20. "Logistic Regression" is fundamentally a:
A) Classification algorithm that models the probability of a binary outcome using a logistic function.
B) Dimensionality reduction technique.
C) Clustering algorithm for grouping unlabeled data.
D) Regression algorithm for predicting continuous values.
  • 21. The output of a logistic regression model is a value between 0 and 1, which represents the:
A) Exact value of the target variable.
B) Number of features in the input.
C) Probability that the input belongs to a particular class.
D) Distance to the decision boundary.
  • 22. A "Random Forest" is an ensemble method that combines multiple:
A) Linear Regression models.
B) Support Vector Machines.
C) K-NN models.
D) Decision Trees to reduce overfitting and improve generalization.
  • 23. The "bagging" technique in a Random Forest helps to:
A) Increase the speed of a single decision tree.
B) Perform feature extraction like PCA.
C) Reduce variance by training individual trees on random subsets of the data and averaging their results
D) Reduce bias by making trees more complex.
  • 24. "Gradient Boosting" machines (e.g., XGBoost) are ensemble methods that:
A) Build models sequentially, where each new model corrects the errors of the previous ones.
B) Are exclusively used for unsupervised learning.
C) Build all models independently and average them.
D) Do not require any parameter tuning.
  • 25. The term "feature engineering" refers to:
A) The evaluation of a model's final performance.
B) The process of using domain knowledge to create new input features that make machine learning algorithms work better.
C) The process of deleting all features from a dataset.
D) The automatic learning of features by a deep neural network.
  • 26. "One-hot encoding" is a preprocessing technique used to:
A) Cluster similar data points together.
B) Normalize continuous numerical features.
C) Reduce the dimensionality of image data.
D) Convert categorical variables into a binary (0/1) format that can be provided to ML algorithms.
  • 27. "Feature scaling" (e.g., normalization or standardization) is often crucial for algorithms that:
A) Are used for association rule learning.
B) Are based on distance calculations or gradient descent, such as SVM and Neural Networks.
C) Are used for clustering only.
D) Are based on tree-based models like Decision Trees and Random Forests.
  • 28. The "curse of dimensionality" refers to the problem that:
A) All datasets should have as many features as possible.
B) As the number of features grows, the data becomes increasingly sparse, making it harder to find meaningful patterns.
C) There are never enough features to train a good model.
D) Dimensionality reduction always improves model performance.
  • 29. "Regularization" is a technique used to:
A) Increase the variance of a model.
B) Speed up the training time of a model.
C) Make models more complex to fit the training data better.
D) Prevent overfitting by adding a penalty term to the loss function that discourages complex models.
  • 30. L1 Regularization (Lasso) can often lead to:
A) A decrease in model interpretability.
B) Increased model complexity.
C) Sparse models where the weights of less important features are driven to zero, effectively performing feature selection.
D) All features having non-zero weights.
  • 31. "Hyperparameters" are:
A) The output predictions of the model.
B) The input features of the model.
C) Configuration settings for the learning algorithm that are not learned from the data and must be set prior to training (e.g., learning rate, K in K-NN).
D) The parameters that the model learns during training (e.g., weights in a neural network).
  • 32. The process of "Hyperparameter Tuning" involves:
A) Searching for the best combination of hyperparameters that results in the best model performance.
B) Training the model's internal weights.
C) Cleaning the raw data.
D) Deploying the final model.
  • 33. "Grid Search" is a common method for hyperparameter tuning that involves:
A) Exhaustively searching over a specified set of hyperparameter values.
B) Using a separate neural network to predict the best hyperparameters.
C) Randomly sampling hyperparameter combinations from a distribution.
D) Ignoring hyperparameters altogether.
  • 34. "Early Stopping" is a form of regularization that works by:
A) Halting the training process when performance on a validation set starts to degrade, indicating the onset of overfitting.
B) Stopping the training after a fixed, very short number of epochs.
C) Starting the training process later than scheduled.
D) Using a very small learning rate.
  • 35. A "Vanilla" neural network, also known as a Multilayer Perceptron (MLP), is typically composed of:
A) Convolutional layers for processing images.
B) A single layer of neurons.
C) Fully connected layers, where each neuron in one layer is connected to every neuron in the next layer.
D) Recurrent layers for processing sequences.
  • 36. The "softmax" activation function is commonly used in the output layer of a neural network for:
A) Regression problems.
B) Multi-class classification problems, as it outputs a probability distribution over the possible classes.
C) Unsupervised learning problems.
D) Binary classification problems.
  • 37. The "Adam" optimizer is an adaptive learning rate algorithm that is often preferred because it:
A) Does not require any hyperparameters.
B) Is guaranteed to find the global minimum for any function.
C) Combines the advantages of two other extensions of stochastic gradient descent, AdaGrad and RMSProp.
D) Is only used for unsupervised learning.
  • 38. "Batch Normalization" is a technique used to:
A) Increase the batch size during training.
B) Normalize the entire dataset before feeding it into the network.
C) Replace the need for an activation function.
D) Improve the stability and speed of neural network training by normalizing the inputs to each layer.
  • 39. The "confusion matrix" is a table that is used to describe the performance of a:
A) Regression model's accuracy.
B) Clustering algorithm's group assignments.
C) Dimensionality reduction technique's effectiveness.
D) Classification model on a set of test data for which the true values are known.
  • 40. In a confusion matrix, the "true positives" are the cases where:
A) The model correctly predicted the positive class.
B) The model incorrectly predicted the negative class.
C) The model correctly predicted the negative class.
D) The model incorrectly predicted the positive class.
  • 41. The problem of "imbalanced classes" occurs when:
A) The learning rate is set too high.
B) The features are not scaled properly.
C) The model is too complex for the data.
D) One class in the training data has significantly more examples than another, which can bias the model.
  • 42. A technique to address imbalanced classes is "SMOTE," which:
A) Ignores the minority class completely.
B) Combines all classes into one.
C) Deletes examples from the majority class at random.
D) Generates synthetic examples for the minority class to balance the dataset.
  • 43. "Reinforcement Learning" differs from supervised and unsupervised learning in that:
A) It is only used for clustering unlabeled data.
B) It requires a fully labeled dataset for training.
C) It is a simpler and less powerful approach.
D) It learns by interacting with an environment and receiving rewards or penalties for actions, without a labeled dataset.
  • 44. "Q-Learning" is a popular algorithm in reinforcement learning that learns:
A) The principal components of a state space.
B) A clustering of possible actions.
C) A decision tree for classification.
D) A policy that tells an agent what action to take under what circumstances by learning a value function.
  • 45. "Natural Language Processing" (NLP) often uses supervised learning for tasks like:
A) Sentiment analysis, where text is classified as positive, negative, or neutral.
B) Generating new, original text without any input.
C) Reducing the dimensionality of word vectors.
D) Grouping similar news articles without labels.
  • 46. "Word Embeddings" (like Word2Vec) are techniques that:
A) Are a type of clustering algorithm.
B) Represent words as dense vectors in a continuous space, capturing semantic meaning.
C) Are used only for image classification.
D) Represent words as simple one-hot encoded vectors.
  • 47. A "Generative Adversarial Network" (GAN) consists of two networks:
A) Two identical Convolutional Neural Networks.
B) An Encoder and a Decoder for compression.
C) A single, large Regression network.
D) A Generator and a Discriminator, which are trained in opposition to each other.
  • 48. The "Generator" in a GAN is responsible for:
A) Classifying input images into categories.
B) Creating new, synthetic data that is indistinguishable from real data.
C) Reducing the dimensionality of the input.
D) Discriminating between real and fake data.
  • 49. The "Discriminator" in a GAN is essentially a:
A) Binary classifier that tries to correctly label data as real (from the dataset) or fake (from the generator).
B) Dimensionality reduction technique.
C) Regression model predicting a continuous value.
D) Clustering algorithm grouping similar images.
Created with That Quiz — a math test site for students of all grade levels.