TensorFlow Test 1

0%

In TensorFlow, which of the following declarations effectively represents an actual neuron?

Correct! Wrong!

Explanation:
All of the above statements are valid

In TensorFlow, which of the following procedures is used to cope with overfitting in a neural network?

Correct! Wrong!

Explanation:
All of the above

In TensorFlow, which of the following algorithms performs processes similar to the dropout in a neural community?

Correct! Wrong!

Explanation:
Bagging is the process of creating many predictors that perform similarly to a single predictor.

Batch normalization is useful due to?

Correct! Wrong!

Explanation:
When batch normalization is applied to neural networks, the inputs to hidden layers are normalized, resulting in improved outcomes.

Which components of convolutional neural networks will conduct classification on the extracted features under Tensorflow?

Correct! Wrong!

Explanation:
Dense Layer = Fullyconnected Layer = topology, describes how neurons are connected to the next layer of neurons (every neuron in the next layer is connected to every neuron in the next layer), an intermediate layer (also known as hidden layer, see figure) Output Layer = Last layer of a Multilayer Perceptron

Which of the following functions should not be used to classify an image at the output layer?

Correct! Wrong!

Explanation:
The rectified linear activation function (ReLU) is a non-linear or piecewise linear function that outputs the input directly if it is positive and zero otherwise. It is the most often used activation function in neural networks, particularly Convolutional Neural Networks (CNNs) and Multilayer Perceptrons.

Under Tensorflow, which components of convolutional neural networks retrieve subregions of the feature map (e.g., 2x2-pixel tiles), maintain their greatest value, and discard all other values?

Correct! Wrong!

Explanation:
The feature maps' dimensions are reduced by combining layers. As a result, the number of parameters to learn and the quantity of computation done in the network are both reduced. The features contained in a region of the feature map created by a convolution layer are summarized by the pooling layer.

A ______ is a network that includes feedback linkages from o/p to i/p as well as hidden layers.

Correct! Wrong!

Explanation:
A recurrent neural network (RNN) is a form of artificial neural network that works with time series or sequential data.

Under Tensorflow, which components of Convolutional neural networks commonly use a ReLU activation function to the output to incorporate nonlinearities into the model?

Correct! Wrong!

Explanation:
The first layer to derive features from the input image is the convolutional layer. By learning visual attributes with a small square of input data, the convolutional layer preserves the link between pixels.

Premium Tests $49/mo
FREE April-2024