#1
Which deep learning architecture is often used for image classification tasks?
ResNet
ExplanationResNet uses residual connections to enable training of very deep neural networks for image classification.
#2
What is the role of the activation function in a neural network?
To introduce non-linearity to the network
ExplanationActivation functions enable neural networks to model complex relationships and patterns.
#3
Which technique is commonly used for image denoising?
Gaussian blur
ExplanationGaussian blur is a smoothing technique used to reduce noise and enhance image quality.
#4
Which deep learning framework is commonly used for computer vision tasks?
TensorFlow
ExplanationTensorFlow is a widely used deep learning framework, particularly in computer vision applications.
#5
What does the acronym CNN stand for in the context of deep learning?
Convolutional Neural Network
ExplanationCNNs are specialized neural networks designed for processing grid-like data, commonly used in image analysis.
#6
What is the basic purpose of image segmentation in computer vision?
To divide an image into meaningful segments
ExplanationSegmentation helps identify and analyze distinct regions within an image.
#7
Which algorithm is commonly used for object detection in images?
YOLO (You Only Look Once)
ExplanationYOLO efficiently detects objects by dividing the image into a grid and making predictions simultaneously.
#8
In image processing, what does the term 'Histogram' represent?
A graphical representation of pixel intensities in an image
ExplanationHistograms illustrate the distribution of pixel intensities, aiding in image analysis.
#9
Which technique is commonly used for image feature extraction?
Principal Component Analysis (PCA)
ExplanationPCA reduces image dimensionality by capturing essential features and patterns.
#10
Which type of neural network architecture is suitable for sequential data, such as time series or text?
Recurrent Neural Network (RNN)
ExplanationRNNs process sequential data by maintaining a hidden state, allowing them to capture temporal dependencies.
#11
What is the purpose of the Intersection over Union (IoU) metric in object detection?
To assess the overlap between predicted and ground truth bounding boxes
ExplanationIoU measures the accuracy of object detection by evaluating the overlap between predicted and actual bounding boxes.
#12
What is the purpose of the Batch Normalization layer in a neural network?
To normalize input data before feeding it to the network
ExplanationBatch Normalization stabilizes and accelerates neural network training by normalizing input data.
#13
What is the purpose of the term 'RoI' in object detection?
Region of Interest
ExplanationRoI specifies the region where detailed analysis is performed in object detection algorithms.
#14
What is the primary purpose of the softmax activation function in the output layer of a neural network?
To normalize the output probabilities
ExplanationSoftmax normalizes output scores into probabilities, facilitating multi-class classification.
#15
Which technique is commonly used for image colorization?
Generative Adversarial Network (GAN)
ExplanationGANs generate realistic colorized images by learning from existing color distributions.
#16
In image processing, what is the purpose of the Laplacian of Gaussian (LoG) filter?
Edge detection
ExplanationLoG filter enhances edges in an image by combining Gaussian smoothing with Laplacian edge detection.
#17
What is the purpose of non-maximum suppression in object detection?
To reduce false positives and keep only the most confident predictions
ExplanationNon-maximum suppression filters out redundant bounding box predictions.
#18
What is the significance of anchor boxes in object detection algorithms?
To define the spatial locations of potential objects in an image
ExplanationAnchor boxes help anchor the bounding box predictions at different scales and aspect ratios.
#19
What is the purpose of data augmentation in image processing?
To increase the size of the training dataset by applying transformations
ExplanationData augmentation diversifies the training dataset, improving model generalization.
#20
What is the primary advantage of transfer learning in image classification?
It enables the reuse of pre-trained models on a new task
ExplanationTransfer learning leverages pre-trained models, saving training time and resources.
#21
In the context of image recognition, what does the term 'F1 score' measure?
Precision and recall balance
ExplanationF1 score balances precision and recall, providing a comprehensive evaluation of a classifier's performance.
#22
Which technique is commonly used for image style transfer?
Neural Style Transfer
ExplanationNeural Style Transfer applies artistic styles from reference images to transform the visual appearance of another image.
#23
In image recognition, what does the term 'Fine-tuning' refer to?
Refining a pre-trained model on a specific task
ExplanationFine-tuning adapts a pre-trained model to a specific task by adjusting its parameters.
#24
What is the purpose of the Non-local Neural Network (NLNN) in image processing?
To enhance global feature learning
ExplanationNLNN improves feature learning by capturing long-range dependencies in spatial relationships.
#25
Which type of neural network is suitable for generating new, realistic images?
Generative Adversarial Network (GAN)
ExplanationGANs excel at generating realistic images by training a generator and discriminator in an adversarial fashion.