wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

ANN Gr12

Total questions: 13

Worksheet time: 7mins

Name
Class
Date
1.

Every Artificial Neural must have at least ______

a)

ONe layer

b)

Twi layers

c)

Three layers

d)

Four layers

2.

is a series of algorithms that aims to understand

the relationships in a set of data using a

process inspired by the human brain

a)

Cryptography

b)

K-nearest value

c)

Artificial neural network

3.

A mathematical function that determines the output of a node, given the inputs.

a)

Sigmoid function

b)

Transfer function

c)

Activation function

4.

This entire journey of the signals, starting at the input layer, going through the hidden

layers and coming out through the output layer once.

a)

Session

b)

Epoch

c)

Step

5.

Whenever you want to do mathematical computations with arrays, you need to

import this module/library.

a)

Numpy

b)

Math

c)

Lib

6.

The attributes of the class neuron in python :

a)

inputs , outputs

b)

weights, bias

c)

weights,inputs

7.

when you want to create a numpy array, you have to call numpy‟s array

function like this:

a)

X=numpy.array([1,3])

b)

X=numpy[1,3]

c)

X=array([1,3])

8.

A network of Neurons in which input moves forward, starting at the input layer, going

through the hidden layers and coming out through the output layers.

a)

Backward propagation

b)

Feedforward

c)

current neural network

9.

Using the error to modify the weight of the connection between the layers called ...........

a)

Forward propagation

b)

Backward propagation

10.

This is a measure of how fast the training needs to get completed. A larger training rate

means that the steps towards the minimum error will be large,

a)

Learning rate

b)

Optimisation

c)

Calculate weight

11.

Some of the Python libraries available that do this whole work of

training, error calculation and weight adjustment

a)

Scikit

tensorflow

b)

Math

Lib

c)

predict library

12.

pip install -U scikit-learn

The line of code is used to:

a)

Install the Scikit-learn package

b)

Install face recognition files

c)

Install the library to do math claculations

13.

Using the MLPClassifier that we don‟t need to initialize the weights and biases. These are

automatically and randomly initialized by the network.

a)

True

b)

False