[coursera/dl&nn/week1]Introduction to deep learning(summary&question)
important concept:
1.1neural network
1.2 supervised learning with neural network
1.3 structured data(num)/unstructured data(image/vedio/text)
1.4traditional method(svm/knn...) standard neural network
convolutional neural network(image)
recurrent neural network(sequence)
why is dl taking off?
ReLU function(Rectified Linear Unit)
questions:wrong answer:4.images for cat is regarded as "unstructured data", but the images stored in computer may be "structured data" (images is numbers of pixels which are stored by structured RBG-num in computer)8.RNNs represent the recurrent process of Idea->Code->Experiment->Idea->....RNNs are a model type.The iterate process is another concept.1. Question 1
What does the analogy “AI is the new electricity” refer to?
CorrectYes. AI is transforming many fields from the car industry to agriculture to supply-chain...
2. Question 2
Which of these are reasons for Deep Learning recently taking off? (Check the three options that apply.)
Un-selected is correctCorrectYes! The development of hardware, perhaps especially GPU computing, has significantly improved deep learning algorithms' performance.
CorrectThese were all examples discussed in lecture 3.
CorrectYes! The digitalization of our society has played a huge role in this.
3. Question 3
Recall this diagram of iterating over different ML ideas. Which of the statements below are true? (Check all that apply.)
CorrectYes, as discussed in Lecture 4.
CorrectYes, as discussed in Lecture 4.
Un-selected is correctCorrectYes. For example, we discussed how switching from sigmoid to ReLU activation functions allows faster training.
4. Question 4
When an experienced deep learning engineer works on a new problem, they can usually use insight from previous problems to train a good model on the first try, without needing to iterate multiple times through different models. True/False?
CorrectYes. Finding the characteristics of a model is key to have good performance. Although experience can help, it requires multiple iterations to build a good model.
5. Question 5
Which one of these plots represents a ReLU activation function?
![]()
![]()
CorrectCorrect! This is the ReLU activation function, the most used in neural networks.
6. Question 6
Images for cat recognition is an example of “structured” data, because it is represented as a structured array in a computer. True/False?
This should not be selectedNo. Images for cat recognition is an example of “unstructured” data.
7. Question 7
A demographic dataset with statistics on different cities' population, GDP per capita, economic growth is an example of “unstructured” data because it contains data coming from different sources. True/False?
CorrectA demographic dataset with statistics on different cities' population, GDP per capita, economic growth is an example of “structured” data by opposition to image, audio or text datasets.
8. Question 8
Why is an RNN (Recurrent Neural Network) used for machine translation, say translating English to French? (Check all that apply.)
CorrectYes. We can train it on many pairs of sentences x (English) and y (French).
Un-selected is correctCorrectYes. An RNN can map from a sequence of english words to a sequence of french words.
This should not be selectedNo. RNNs are a model type. The iterative process of developing DL systems is a completely separate concept.
9. Question 9
In this diagram which we hand-drew in lecture, what do the horizontal axis (x-axis) and vertical axis (y-axis) represent?
y-axis (vertical axis) is the performance of the algorithm.Correcty-axis (vertical axis) is the amount of data.y-axis is the size of the model you train.y-axis is outputs.10. Question 10
Assuming the trends described in the previous question's figure are accurate (and hoping you got the axis labels right), which of the following are true? (Check all that apply.)
CorrectYes. Bringing more data to a model is almost always beneficial.
Un-selected is correctUn-selected is correctCorrectYes. According to the trends in the figure above, big networks usually perform better than small networks.