Artificial Intelligence & ML

Download Q&A
Cloud ML Services Clustering Methods: K-means, Hierarchical Clustering Methods: K-means, Hierarchical - Advanced Concepts Clustering Methods: K-means, Hierarchical - Applications Clustering Methods: K-means, Hierarchical - Case Studies Clustering Methods: K-means, Hierarchical - Competitive Exam Level Clustering Methods: K-means, Hierarchical - Higher Difficulty Problems Clustering Methods: K-means, Hierarchical - Numerical Applications Clustering Methods: K-means, Hierarchical - Problem Set Clustering Methods: K-means, Hierarchical - Real World Applications CNNs and Deep Learning Basics Decision Trees and Random Forests Decision Trees and Random Forests - Advanced Concepts Decision Trees and Random Forests - Applications Decision Trees and Random Forests - Case Studies Decision Trees and Random Forests - Competitive Exam Level Decision Trees and Random Forests - Higher Difficulty Problems Decision Trees and Random Forests - Numerical Applications Decision Trees and Random Forests - Problem Set Decision Trees and Random Forests - Real World Applications Evaluation Metrics Evaluation Metrics - Advanced Concepts Evaluation Metrics - Applications Evaluation Metrics - Case Studies Evaluation Metrics - Competitive Exam Level Evaluation Metrics - Higher Difficulty Problems Evaluation Metrics - Numerical Applications Evaluation Metrics - Problem Set Evaluation Metrics - Real World Applications Feature Engineering and Model Selection Feature Engineering and Model Selection - Advanced Concepts Feature Engineering and Model Selection - Applications Feature Engineering and Model Selection - Case Studies Feature Engineering and Model Selection - Competitive Exam Level Feature Engineering and Model Selection - Higher Difficulty Problems Feature Engineering and Model Selection - Numerical Applications Feature Engineering and Model Selection - Problem Set Feature Engineering and Model Selection - Real World Applications Linear Regression and Evaluation Linear Regression and Evaluation - Advanced Concepts Linear Regression and Evaluation - Applications Linear Regression and Evaluation - Case Studies Linear Regression and Evaluation - Competitive Exam Level Linear Regression and Evaluation - Higher Difficulty Problems Linear Regression and Evaluation - Numerical Applications Linear Regression and Evaluation - Problem Set Linear Regression and Evaluation - Real World Applications ML Model Deployment - MLOps Model Deployment Basics Model Deployment Basics - Advanced Concepts Model Deployment Basics - Applications Model Deployment Basics - Case Studies Model Deployment Basics - Competitive Exam Level Model Deployment Basics - Higher Difficulty Problems Model Deployment Basics - Numerical Applications Model Deployment Basics - Problem Set Model Deployment Basics - Real World Applications Neural Networks Fundamentals Neural Networks Fundamentals - Advanced Concepts Neural Networks Fundamentals - Applications Neural Networks Fundamentals - Case Studies Neural Networks Fundamentals - Competitive Exam Level Neural Networks Fundamentals - Higher Difficulty Problems Neural Networks Fundamentals - Numerical Applications Neural Networks Fundamentals - Problem Set Neural Networks Fundamentals - Real World Applications NLP - Tokenization, Embeddings Reinforcement Learning Intro RNNs and LSTMs Supervised Learning: Regression and Classification Supervised Learning: Regression and Classification - Advanced Concepts Supervised Learning: Regression and Classification - Applications Supervised Learning: Regression and Classification - Case Studies Supervised Learning: Regression and Classification - Competitive Exam Level Supervised Learning: Regression and Classification - Higher Difficulty Problems Supervised Learning: Regression and Classification - Numerical Applications Supervised Learning: Regression and Classification - Problem Set Supervised Learning: Regression and Classification - Real World Applications Support Vector Machines Overview Support Vector Machines Overview - Advanced Concepts Support Vector Machines Overview - Applications Support Vector Machines Overview - Case Studies Support Vector Machines Overview - Competitive Exam Level Support Vector Machines Overview - Higher Difficulty Problems Support Vector Machines Overview - Numerical Applications Support Vector Machines Overview - Problem Set Support Vector Machines Overview - Real World Applications Unsupervised Learning: Clustering Unsupervised Learning: Clustering - Advanced Concepts Unsupervised Learning: Clustering - Applications Unsupervised Learning: Clustering - Case Studies Unsupervised Learning: Clustering - Competitive Exam Level Unsupervised Learning: Clustering - Higher Difficulty Problems Unsupervised Learning: Clustering - Numerical Applications Unsupervised Learning: Clustering - Problem Set Unsupervised Learning: Clustering - Real World Applications
Q. In the context of a confusion matrix, what does precision measure?
  • A. True positive rate
  • B. False positive rate
  • C. Correct positive predictions out of total positive predictions
  • D. Correct predictions out of total predictions
Q. In the context of a confusion matrix, what does the term 'True Positive' refer to?
  • A. Correctly predicted positive cases
  • B. Incorrectly predicted positive cases
  • C. Correctly predicted negative cases
  • D. Incorrectly predicted negative cases
Q. In the context of classification, what does precision measure?
  • A. The ratio of true positives to total predicted positives
  • B. The ratio of true positives to total actual positives
  • C. The overall accuracy of the model
  • D. The ratio of false positives to total predicted positives
Q. In the context of classification, what does ROC stand for?
  • A. Receiver Operating Characteristic
  • B. Receiver Output Curve
  • C. Rate of Classification
  • D. Random Output Curve
Q. In the context of clustering, what does 'curse of dimensionality' refer to?
  • A. The increase in computational cost with more dimensions
  • B. The difficulty in visualizing high-dimensional data
  • C. The sparsity of data in high dimensions affecting clustering
  • D. All of the above
Q. In the context of clustering, what does 'density-based' mean?
  • A. Clusters are formed based on the distance between points
  • B. Clusters are formed based on the number of points in a region
  • C. Clusters are formed based on the average value of points
  • D. Clusters are formed based on the variance of points
Q. In the context of CNNs, what does 'stride' refer to?
  • A. The number of filters used
  • B. The step size of the filter during convolution
  • C. The depth of the network
  • D. The size of the input image
Q. In the context of Decision Trees, what does 'feature importance' refer to?
  • A. The number of times a feature is used in the tree.
  • B. The contribution of a feature to the model's predictions.
  • C. The correlation of a feature with the target variable.
  • D. The depth of a feature in the tree.
Q. In the context of Decision Trees, what does 'pruning' refer to?
  • A. Adding more branches to the tree
  • B. Removing branches to reduce complexity
  • C. Increasing the depth of the tree
  • D. Changing the splitting criteria
Q. In the context of evaluation metrics, what does recall measure?
  • A. The ability of a model to identify all relevant instances
  • B. The ability of a model to avoid false positives
  • C. The overall accuracy of the model
  • D. The balance between precision and recall
Q. In the context of evaluation metrics, what is a confusion matrix?
  • A. A table used to describe the performance of a classification model
  • B. A method to visualize the ROC curve
  • C. A technique to calculate the AUC
  • D. A way to measure the variance in predictions
Q. In the context of feature engineering, what does 'one-hot encoding' achieve?
  • A. Reduces dimensionality
  • B. Converts categorical variables into a numerical format
  • C. Eliminates multicollinearity
  • D. Increases the number of features exponentially
Q. In the context of feature scaling, what is the main purpose of normalization?
  • A. To reduce the number of features
  • B. To ensure all features contribute equally to the distance calculations
  • C. To increase the variance of the dataset
  • D. To eliminate outliers from the dataset
Q. In the context of gaming, how are neural networks utilized?
  • A. Game design
  • B. Player behavior prediction
  • C. Graphics rendering
  • D. Sound design
Q. In the context of linear regression, what does 'heteroscedasticity' refer to?
  • A. Constant variance of errors
  • B. Non-constant variance of errors
  • C. Independence of errors
  • D. Normal distribution of errors
Q. In the context of linear regression, what does 'overfitting' mean?
  • A. The model performs well on training data but poorly on unseen data
  • B. The model is too simple to capture the underlying trend
  • C. The model has too few parameters
  • D. The model is perfectly accurate
Q. In the context of linear regression, what does 'residual' refer to?
  • A. The predicted value of the dependent variable
  • B. The difference between the observed and predicted values
  • C. The slope of the regression line
  • D. The variance of the independent variable
Q. In the context of linear regression, what does the term 'homoscedasticity' refer to?
  • A. Constant variance of the residuals
  • B. Normal distribution of the errors
  • C. Independence of observations
  • D. Linearity of the relationship
Q. In the context of linear regression, what does the term 'overfitting' refer to?
  • A. The model performs well on training data but poorly on unseen data
  • B. The model is too simple to capture the underlying trend
  • C. The model has too many features
  • D. The model is perfectly accurate
Q. In the context of model deployment, what does 'model drift' refer to?
  • A. Changes in the model architecture
  • B. Changes in the underlying data distribution
  • C. Changes in the model's hyperparameters
  • D. Changes in the deployment environment
Q. In the context of model deployment, what does 'scalability' refer to?
  • A. The ability to handle increased load
  • B. The ability to reduce model size
  • C. The ability to improve accuracy
  • D. The ability to visualize data
Q. In the context of model evaluation, what does 'overfitting' refer to?
  • A. Model performs well on training data but poorly on unseen data
  • B. Model performs equally on training and test data
  • C. Model is too simple to capture the underlying trend
  • D. Model has high bias
Q. In the context of model selection, what does cross-validation help to achieve?
  • A. Increase the training dataset size
  • B. Reduce overfitting and assess model performance
  • C. Select the best features
  • D. Optimize hyperparameters
Q. In the context of model selection, what does cross-validation help to prevent?
  • A. Overfitting
  • B. Underfitting
  • C. Data leakage
  • D. Bias
Q. In the context of neural networks, what does 'dropout' refer to?
  • A. A method to reduce data size
  • B. A technique to prevent overfitting
  • C. A way to increase model complexity
  • D. A process for feature selection
Q. In the context of neural networks, what does 'epoch' refer to?
  • A. A single pass through the training dataset
  • B. The number of layers in the network
  • C. The learning rate adjustment
  • D. The size of the training batch
Q. In the context of neural networks, what does 'overfitting' mean?
  • A. The model performs well on training data but poorly on unseen data
  • B. The model is too simple to capture the underlying patterns
  • C. The model has too few parameters
  • D. The model is trained on too much data
Q. In the context of neural networks, what is 'overfitting'?
  • A. When the model performs well on training data but poorly on unseen data
  • B. When the model has too few parameters
  • C. When the model is too simple to capture the data patterns
  • D. When the model converges too quickly
Q. In the context of neural networks, what is 'transfer learning'?
  • A. Training a model from scratch
  • B. Using a pre-trained model on a new task
  • C. Learning from unsupervised data
  • D. Optimizing hyperparameters
Q. In the context of regression, what does R-squared indicate?
  • A. The proportion of variance explained by the model
  • B. The average error of predictions
  • C. The correlation between predicted and actual values
  • D. The number of features used in the model
Showing 121 to 150 of 1111 (38 Pages)
Soulshift Feedback ×

On a scale of 0–10, how likely are you to recommend The Soulshift Academy?

Not likely Very likely