The term "exploitation" in reinforcement learning refers to which of the following?
- Utilizing the best-known actions
- Trying new, unexplored actions
- Maximizing exploration
- Modifying the environment
Exploitation involves utilizing the best-known actions to maximize rewards based on current knowledge, minimizing risk and uncertainty.
________ learning is often used for discovering hidden patterns in data.
- Reinforcement
- Semi-supervised
- Supervised
- Unsupervised
Unsupervised learning is a machine learning approach where algorithms are used to identify patterns in data without explicit guidance. It is commonly employed for data exploration and pattern discovery.
When dealing with high-dimensional data, which of the two algorithms (k-NN or Naive Bayes) is likely to be more efficient in terms of computational time?
- Both Equally Efficient
- Naive Bayes
- Neither is Efficient
- k-NN
Naive Bayes is typically more efficient in high-dimensional data due to its simple probabilistic calculations, while k-NN can suffer from the "curse of dimensionality."
In the k-NN algorithm, as the value of k increases, the decision boundary becomes __________.
- Linear
- More complex
- More simplified
- Non-existent
As the value of k in k-NN increases, the decision boundary becomes more simplified because it is based on fewer neighboring data points.
A company wants to segment its customers based on their purchasing behavior. They have a fair idea that there are around 5 distinct segments but want to confirm this. Which clustering algorithm might they start with?
- K-Means Clustering
- Agglomerative Hierarchical Clustering
- Mean-Shift Clustering
- Spectral Clustering
The company might start with K-Means Clustering to confirm their idea of five distinct segments. K-Means is often used for partitioning data into a pre-specified number of clusters and can be a good choice when you have a rough idea of the number of clusters.
Variational autoencoders (VAEs) introduce a probabilistic spin to autoencoders by associating a ________ with the encoded representations.
- Probability Distribution
- Singular Value Decomposition
- Principal Component
- Regression Function
VAEs introduce a probabilistic element to autoencoders by associating a probability distribution (typically Gaussian) with the encoded representations. This allows for generating new data points.
Which regression technique is primarily used for predicting a continuous outcome variable (like house price)?
- Decision Tree Regression
- Linear Regression
- Logistic Regression
- Polynomial Regression
Linear Regression is the most common technique for predicting a continuous outcome variable, such as house prices. It establishes a linear relationship between input features and the output.
The Actor-Critic model combines value-based and ________ methods to optimize its decision-making process.
- Policy-Based
- Model-Free
- Model-Based
- Q-Learning
The Actor-Critic model combines value-based (critic) and model-free (actor) methods to optimize decision-making. The critic evaluates actions using value functions, and the actor selects actions based on this evaluation, thus combining two approaches for improved learning.
For text classification problems, the ________ variant of Naive Bayes is often used.
- K-Means
- Multinomial
- Random Forest
- SVM
In text classification, the Multinomial variant of Naive Bayes is commonly used due to its suitability for modeling discrete data like word counts.
For a non-linearly separable dataset, which property of SVMs allows them to classify the data?
- Feature selection
- Kernel functions
- Large training dataset
- Parallel processing
SVMs can classify non-linearly separable data using kernel functions, which map the data into a higher-dimensional space where it becomes linearly separable.