- What are the three main differences between machine learning and deep learning stated at the beginning of this chapter?
- What year is considered the explosion of deep learning?
- What does the following function perform?
blob = cv2.dnn.blobFromImage(image, 1.0, (300, 300), [104., 117., 123.], False, False)
- What do the following lines perform?
net.setInput(blob)preds = net.forward()
- What is a placeholder in TensorFlow?
- When saving a model using saver.save() in TensorFlow, what four files are created?
- What is the meaning of one-hot encoding?
- What is a sequential model in Keras?
- What is the purpose of model.fit() in Keras?