ANN Using Python

ANN Using Python

12th Grade

6 Qs

quiz-placeholder

Similar activities

Photoshop-Organizing Documents

Photoshop-Organizing Documents

9th - 12th Grade

10 Qs

Adobe Visual Design II Mod 3.00

Adobe Visual Design II Mod 3.00

12th Grade

10 Qs

Practice exam

Practice exam

9th - 12th Grade

10 Qs

8 ICT diagnostic test

8 ICT diagnostic test

8th Grade - University

10 Qs

Google IT Support Certification Quiz

Google IT Support Certification Quiz

KG - Professional Development

10 Qs

MINECRAFT: EDUCATION EDITION

MINECRAFT: EDUCATION EDITION

KG - 12th Grade

10 Qs

OSHA 10 General Industry Fall Protection Quiz

OSHA 10 General Industry Fall Protection Quiz

12th Grade

10 Qs

AI in Education Quiz

AI in Education Quiz

12th Grade

10 Qs

ANN Using Python

ANN Using Python

Assessment

Quiz

Instructional Technology

12th Grade

Medium

Created by

Raghad Ibhais

Used 2+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The CIFAR-10 dataset is a collection of 60000 32x32 colour images in 10 classes, with 6000 images per

class.

True

False

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The code (x_train, y_train), (x_test,y_test) = datasets.cifar10.load_data(), is used to print the

data type

True

False

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In #Get the shape of x_train

print(‘x_train shape:’, x_train.shape), x_train – contains all the training images

True

False

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

print(‘The image label is: ‘, y_train[index]), the error in the code is:

y should be capital

the punctuation should be replaced

We should remove the punctuation

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The error in def plot_sample(X, y, index): is

X should be small x

True

False

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The code: ann = models.Sequential([

layers.Flatten(input_shape=(32,32,3)),

layers.Dense(3000, activation=’relu’),

layers.Dense(1000, activation=’relu’),

layers.Dense(10, activation=’softmax’)

]) is used to create the ANN.

True

False