In time series forecasting, the goal is to predict future ________ based on past observations.
- Events
- Trends
- Weather
- Stock Prices
Time series forecasting aims to predict future trends or patterns based on historical data, which can be applied in various fields like finance or weather.
Decision Trees often suffer from ______, where they perform well on training data but poorly on new, unseen data.
- Overfitting
- Pruning
- Splitting
- Underfitting
Decision Trees are prone to "Overfitting," where they become too complex and fit the training data too closely. This can lead to poor generalization to new, unseen data.
Which of the following techniques is used to estimate future rewards in reinforcement learning?
- Q-Learning
- Gradient Descent
- Principal Component Analysis
- K-Means Clustering
Q-Learning is a technique in reinforcement learning used to estimate future rewards associated with taking actions in different states.
What is the potential consequence of deploying a non-interpretable machine learning model in a critical sector, such as medical diagnosis?
- Inability to explain decisions
- Improved accuracy
- Faster decision-making
- Better generalization
Deploying a non-interpretable model can result in a lack of transparency, making it challenging to understand how and why the model makes specific medical diagnosis decisions. This lack of transparency can be risky in critical sectors.
The ability of SVMs to handle non-linear decision boundaries is achieved by transforming the input data into a higher-dimensional space using a ______.
- Classifier
- Dimensionality Reduction
- Ensemble
- Kernel
SVMs use a mathematical function called a kernel to transform data into a higher-dimensional space, enabling them to handle non-linear decision boundaries effectively.
The multi-armed bandit problem is a classic problem in which domain?
- Sequential Decision-Making Problems
- Natural Language Processing
- Computer Graphics
- Speech Recognition
The multi-armed bandit problem falls under the domain of Sequential Decision-Making Problems, specifically addressing scenarios where a decision must be made over time with limited resources.
What type of neural network is designed for encoding input data into a compressed representation and then decoding it back to its original form?
- Convolutional Neural Network (CNN)
- Recurrent Neural Network (RNN)
- Autoencoder
- Long Short-Term Memory (LSTM)
Autoencoders are neural networks designed for this task. They consist of an encoder network that compresses input data into a compact representation and a decoder network that reconstructs the original data from this representation.
What is the main challenge faced by NLP systems when processing clinical notes in electronic health records?
- Variability in clinical language
- Availability of data
- Lack of computational resources
- Precision and recall
Clinical notes often use varied and context-specific language, making it challenging for NLP systems to accurately interpret and extract information from electronic health records. This variability can impact system accuracy.
Which term refers to using a model that has already been trained on a large dataset and fine-tuning it for a specific task?
- Model adaptation
- Model transformation
- Model modification
- Fine-tuning
Fine-tuning is the process of taking a pre-trained model and adjusting it to perform a specific task. It's a crucial step in transfer learning, where the model adapts its features and parameters to suit the new task.
Imagine a scenario where an online learning platform wants to categorize its vast number of courses into different topics. The platform doesn't have predefined categories but wants the algorithm to determine them based on course content. This task would best be accomplished using which learning approach?
- Clustering
- Reinforcement Learning
- Supervised Learning
- Unsupervised Learning
Unsupervised learning is the most suitable approach. Here, the algorithm should discover inherent structures or clusters within the courses without any predefined categories, making unsupervised learning a fitting choice.