A telemedicine platform wants to develop a feature where patients can describe their symptoms in natural language, and the system provides potential diagnoses. This feature would heavily rely on which technology?

  • Natural Language Processing (NLP)
  • Artificial Intelligence (AI)
  • Blockchain Technology
  • Augmented Reality (AR)
The feature of interpreting natural language symptoms and providing diagnoses relies on Natural Language Processing (NLP) to understand and process the patient's input effectively.

In a Gaussian Mixture Model, what parameter determines the shape, size, and orientation of the cluster?

  • Covariance Matrix
  • Number of Clusters
  • Mean Vector
  • Standard Deviation
In a Gaussian Mixture Model, the shape, size, and orientation of a cluster are determined by the covariance matrix, which represents the dispersion and correlation between data points in the cluster.

Using domain knowledge to transform raw data into a more suitable format or variable for modeling is known as ________.

  • Data Preprocessing
  • Data Transformation
  • Feature Engineering
  • Raw Data Analysis
The process of using domain knowledge to transform raw data into a more suitable format or create new variables is called "feature engineering." It is a critical step in data preparation to improve model performance by providing more informative features.

A research institution is working on a system to automatically summarize long medical research papers into concise abstracts. This task primarily requires expertise in which domain?

  • Medical Domain
  • Computer Science
  • Linguistics
  • Information Retrieval
Summarizing research papers into concise abstracts relies heavily on linguistic expertise to ensure the summaries are coherent and convey the key information effectively.

In the Actor-Critic architecture, which part directly decides on the action to be taken?

  • The Actor
  • The Critic
  • The Decision Maker
  • The Environment
The Actor is directly responsible for deciding on the action to be taken, while the Critic provides feedback on these actions.

The ________ classifier calculates the probability of a particular event based on prior knowledge of conditions related to that event.

  • Decision Tree
  • K-Means
  • Naive Bayes
  • Support Vector Machine
The Naive Bayes classifier calculates the probability of an event based on prior knowledge of conditions. It's a probabilistic classifier.

When determining the number of clusters (K) for K-means clustering, which method involves plotting the variance as K increases and looking for an "elbow" in the plot?

  • Davies-Bouldin Index
  • Elbow Method
  • Gap Statistics
  • Silhouette Analysis
The Elbow Method involves plotting the variance (inertia) against different values of K. The "elbow" point is where the rate of decrease sharply changes, indicating an optimal K.

The balance between taking known rewarding actions and discovering new ones is termed as the ________ dilemma.

  • Exploration-Exploitation
  • Action-Selection
  • Reinforcement-Reward
  • Decision-Making
This is known as the Exploration-Exploitation dilemma, which is central in Reinforcement Learning, referring to the balance between exploiting known actions for rewards and exploring new actions to discover more rewarding ones.

A common measure of performance in the multi-armed bandit problem is the cumulative ________ over time.

  • Rewards
  • Q-values
  • States
  • Actions
The cumulative rewards over time are a common measure of performance in the multi-armed bandit problem, as you aim to maximize total reward.

When a model has very high variance and is too complex, which problem is it likely facing?

  • Bias
  • Noise
  • Overfitting
  • Underfitting
When a model has high variance and complexity, it is likely facing overfitting. Overfit models perform well on training data but poorly on new, unseen data, as they've learned to capture noise in the data, not the underlying patterns.