Exam 16: Deep Learning
Exam 1: Introduction to Computers and Python 28 Questions
Exam 2: Introduction to Python Programming 32 Questions
Exam 3: Control Statements and Program Development 20 Questions
Exam 4: Functions 18 Questions
Exam 5: Sequences: Lists and Tuples 25 Questions
Exam 6: Dictionaries and Sets 27 Questions
Exam 7: Array-Oriented Programming With Num 18 Questions
Exam 8: Strings: a Deeper Look 20 Questions
Exam 9: Files and Exceptions 30 Questions
Exam 10: Object-Oriented Programming 42 Questions
Exam 11: Computer Science Thinking: Recursion, Searching, Sorting and Big O18 Questions
Exam 12: Natural Language Processing 22 Questions
Exam 13: Data Mining Twitter 15 Questions
Exam 14: Ibm Watson and Cognitive Computing 31 Questions
Exam 15: Machine Learning: Classification, Regression and Clustering 66 Questions
Exam 16: Deep Learning 76 Questions
Exam 17: Big Data: Hadoop, Spark, Nosql and Iot 79 Questions
Select questions type
In supervised deep learning, we aim to predict the ________ labels supplied with data samples.
(Multiple Choice)
4.8/5
(31)
The IPython magic ________ indicates that Matplotlib-based graphics should be displayed in a Jupyter notebook rather than in separate windows.
(Multiple Choice)
4.8/5
(38)
Which of the following deep-learning demos translates a line drawing into a picture:
(Multiple Choice)
4.9/5
(31)
A Keras model's ________ method returns the loss and accuracy values of a trained model.
(Multiple Choice)
4.8/5
(40)
You train a Keras model by calling its fit method. Which of the following statements about the fit method is false?
(Multiple Choice)
4.9/5
(34)
Which of the following statements about a convolutional layer a), b) or c) is false?
(Multiple Choice)
4.7/5
(34)
Which of the following Keras datasets for practicing deep learning is used for sentiment analysis?
(Multiple Choice)
4.8/5
(42)
Consider the following code: import numpy as np
Index = np.random.choice(np.arange(len(X_train)), 24, replace=False)
Figure, axes = plt.subplots(nrows=4, ncols=6, figsize=(16, 9))
For item in zip(axes.ravel(), X_train[index], y_train[index]):
Axes, image, target = item
Axes.imshow(image, cmap=plt.cm.gray_r)
Axes.set_xticks([]) # remove x-axis tick marks
Axes.set_yticks([]) # remove y-axis tick marks
Axes.set_title(target)
Plt)tight_layout()
Which of the following statements a), b) or c) is false?
(Multiple Choice)
4.7/5
(30)
Showing 61 - 76 of 76
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)