Machine Learning Cheat Sheet 2026
The 30 highest-yield Machine Learning facts, distilled from real exam questions. Print it, save it as a PDF, or study it here — free, no sign-up.
60 questions
90 min time limit
70% to pass
- In Machine Learning practice, what is the best approach to quality improvement in computer vision? → Use data-driven methods with measurable outcomes
- Which of the following is NOT a hyperparameter of a Random Forest model? → Learned feature weights of the trees
- What does the term 'epoch' refer to in neural network training? → One complete pass through the entire training dataset
- A classifier achieves 98% accuracy on a dataset where 98% of samples belong to class A. What problem does this illustrate? → The accuracy paradox with imbalanced data
- Which metric is commonly used to evaluate machine translation quality by comparing n-gram overlap with reference translations? → BLEU score
- Which of the following clustering algorithms is specifically designed to handle arbitrarily shaped clusters? → DBSCAN
- What does the R² (coefficient of determination) value of 0 indicate? → The model performs as well as a constant mean predictor
- What is model quantization in the context of deploying deep learning models? → Reducing the numerical precision of weights (e.g., float32 → int8) to speed up inference
- Which technique randomly sets neuron outputs to zero during training to prevent overfitting? → Dropout
- In a confusion matrix for binary classification, what does a 'False Positive' represent? → A negative instance incorrectly classified as positive
- Which clustering approach would be most appropriate for customer segmentation when the true number of segments is unknown and data has irregular shapes? → DBSCAN with tuned epsilon and minPts
- What does 'batch normalization' do in a neural network? → Normalizes the inputs of each layer to have zero mean and unit variance during training
- Which of the following is an example of a 'date-derived' feature useful for forecasting retail sales? → Day of the week
- What is the primary advantage of using an ensemble method like Gradient Boosting over a single decision tree? → Higher predictive accuracy by combining many weak learners sequentially
- What is the most important professional competency for Machine Learning certification in computer vision? → Deep knowledge combined with practical application skills
- In spectral clustering, which step transforms the data before applying K-Means? → Mapping data into eigenvector space of the graph Laplacian
- What is the primary consideration when implementing changes to neural networks? → Impact assessment and change management
- In a Random Forest classifier, how does each tree differ from the others? → Each tree is trained on a bootstrap sample with a random subset of features at each split
- What is the primary purpose of the softmax function in the output layer of a classifier? → To convert raw logits into a probability distribution summing to 1
- Which of the following is a feature extraction example? → All of the above
- Which cross-validation approach is most appropriate for time-series data? → Walk-forward (time-series) cross-validation
- In-text mining, which of the following approaches can be used for normalization? → Both B and C
- Which technique is used to select the optimal regularization parameter in Ridge or Lasso regression? → Cross-validation
- Which loss function is typically used for binary classification tasks in deep learning? → Binary cross-entropy
- What is the primary advantage of using 'embeddings' over one-hot encoding for high-cardinality categorical variables? → Embeddings produce dense, low-dimensional representations that capture semantic similarity
- What is 'spectral clustering' and what advantage does it have? → It uses eigenvectors of a similarity graph Laplacian to cluster data of non-convex shapes
- Which phenomenon occurs when a classifier performs well on training data but fails to generalize to unseen examples? → Overfitting
- Which of the following is an example of a generative classification model? → Naive Bayes
- Which approach best demonstrates mastery of classification in Machine Learning practice? → Applying principles to novel situations with sound judgment
- What is the purpose of 'feature crosses' in models like logistic regression? → To allow linear models to learn non-linear decision boundaries by combining features
Turn these facts into recall:
Was this helpful?