Which NLP technique is often employed to extract structured information from unstructured medical notes?

  • Sentiment Analysis
  • Named Entity Recognition
  • Part-of-Speech Tagging
  • Machine Translation
Named Entity Recognition is an NLP technique used to identify and categorize entities (e.g., drugs, diseases) within unstructured medical text.

Why might a deep learning practitioner use regularization techniques on a model?

  • To make the model larger
  • To simplify the model
  • To prevent overfitting
  • To increase training speed
Deep learning practitioners use regularization techniques to 'prevent overfitting.' Overfitting is when a model learns noise in the training data, and regularization helps in making the model more generalized and robust to new data.

Which type of learning is characterized by an agent interacting with an environment and learning to make decisions based on rewards and penalties?

  • Supervised Learning
  • Reinforcement Learning
  • Unsupervised Learning
  • Semi-Supervised Learning
Reinforcement learning is the type of learning where an agent learns through interaction with an environment by receiving rewards and penalties.

In reinforcement learning, what do we call the function that determines the value of taking an action in a particular state?

  • Action Evaluator
  • Value Function
  • Policy Function
  • Reward Function
The 'Value Function' in reinforcement learning determines the expected cumulative reward of taking an action in a particular state, guiding decision-making.

In reinforcement learning, ________ focuses on trying new actions, while ________ focuses on leveraging known rewards.

  • Exploration Policy
  • Exploitation Policy
  • Random Policy
  • Deterministic Policy
In reinforcement learning, exploration policy focuses on trying new actions to learn more about the environment. Exploitation policy, on the other hand, leverages known rewards to make optimal decisions based on what's already learned.

In Gaussian Mixture Models, the "mixture" refers to the combination of ________ Gaussian distributions.

  • Different
  • Similar
  • Identical
  • Overlapping
In a Gaussian Mixture Model (GMM), the "mixture" implies that we combine multiple Gaussian (normal) distributions to model complex data distributions. The term "identical" indicates that these component Gaussians are the same type.

The weights and biases in a neural network are adjusted during the ________ process to minimize the loss.

  • Forward Propagation
  • Backpropagation
  • Initialization
  • Regularization
Weights and biases in a neural network are adjusted during the 'Backpropagation' process to minimize the loss by propagating the error backward through the network.

In the context of deep learning, what is the primary use case of autoencoders?

  • Image Classification
  • Anomaly Detection
  • Text Generation
  • Reinforcement Learning
The primary use case of autoencoders in deep learning is for anomaly detection. They can learn the normal patterns in data and detect anomalies or deviations from these patterns, making them useful in various applications, including fraud detection and fault diagnosis.

When models are too simple and cannot capture the underlying trend of the data, it's termed as ________.

  • Misfitting
  • Overfitting
  • Simplification
  • Underfitting
When a model is too simple to capture the underlying patterns in the data, it is referred to as "underfitting." Underfit models have high bias and low variance, making them ineffective for predictions.

You are developing a recommendation system for a music app. While the system's bias is low, it tends to offer very different song recommendations for slight variations in user input. This is an indication of which issue in the bias-variance trade-off?

  • High Bias
  • High Variance
  • Overfitting
  • Underfitting
This scenario indicates overfitting in the bias-variance trade-off. Overfit models tend to provide very different recommendations for slight input changes, suggesting that the model is fitting noise in the data and not generalizing well to new user preferences.