What is a potential consequence of biased algorithms in AI systems?

  • Improved accuracy
  • Enhanced user trust
  • Unfair or discriminatory outcomes
  • Faster data processing
Biased algorithms can lead to unfair or discriminatory outcomes, as they may favor certain groups over others. This can have significant ethical and legal implications, causing harm to individuals and undermining trust in AI systems.

In CNNs, the layers that preserve the spatial relationships between pixels by learning image features through small squares of input data are called _______ layers.

  • Pooling
  • Convolution
  • Fully Connected
  • Batch Normalization
In CNNs, the layers that preserve the spatial relationships between pixels by learning image features through small squares of input data are called "Convolution" layers. These layers apply convolutional operations to extract features from the input data, preserving the local spatial relationships in the image.

Which technology is NOT typically associated with real-time data processing?

  • Apache Kafka
  • Apache Spark
  • Hadoop MapReduce
  • MySQL
While Apache Kafka, Apache Spark, and Hadoop MapReduce are often used for real-time or near-real-time data processing, MySQL is a traditional relational database system that is not designed for real-time processing.

The _______ layer in a neural network is responsible for combining features across the input data, often used in CNNs.

  • Input
  • Hidden
  • Output
  • Convolutional
The blank should be filled with "Convolutional." Convolutional layers are used in Convolutional Neural Networks (CNNs) to combine features across input data by applying convolution operations. This is essential for tasks like image recognition.

In the context of model deployment, _______ is the process of ensuring the model's predictions remain consistent and accurate over time.

  • Monitoring
  • Training
  • ETL
  • Visualization
Model monitoring is the process of continuously tracking the performance and behavior of a deployed machine learning model. It involves checking for deviations, evaluating predictions against real-world data, and ensuring that the model remains accurate and reliable over time. Monitoring is crucial for maintaining model quality in production.

In unsupervised learning, _______ is a method where the objective is to group similar items into sets.

  • Principal Component Analysis
  • Regression Analysis
  • Hierarchical Clustering
  • Decision Trees
The correct term is "Hierarchical Clustering." In unsupervised learning, clustering is a method used to group similar items or data points into sets or clusters based on their similarities. Hierarchical clustering is one of the techniques for this purpose. It creates a tree-like structure (dendrogram) to represent the relationships between data points, making it easier to identify groups of similar items.

In Data Science, _______ is the process of cleaning and structuring the data to make it suitable for analysis.

  • Data Mining
  • Data Integration
  • Data Wrangling
  • Data Ingestion
In Data Science, data wrangling is the process of cleaning and structuring data to prepare it for analysis. This includes tasks such as handling missing values, transforming data, and dealing with inconsistencies.

Which activation function maps any input to a value between 0 and 1?

  • ReLU
  • Sigmoid
  • Tanh
  • Softmax
The sigmoid activation function maps any input to a value between 0 and 1. It's commonly used in neural networks for binary classification problems and helps introduce non-linearity in the network's computations.

Overfitting can also be controlled by reducing the _______ of the neural network, which refers to the number of nodes and layers.

  • Learning rate
  • Epochs
  • Capacity
  • Batch size
Overfitting in neural networks can be controlled by reducing the capacity of the network, which refers to the number of nodes and layers. A simpler network is less likely to overfit as it has fewer parameters to learn and generalize more effectively.

In computer vision, detecting specific features or patterns in an image is often achieved using _______.

  • Convolutional Neural Networks
  • Principal Component Analysis
  • Linear Regression
  • Decision Trees
In computer vision, detecting specific features or patterns in an image is often achieved using Convolutional Neural Networks (CNNs). CNNs are well-suited for image feature extraction and are widely used in tasks like object detection and image classification.