

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Deep Learning Coursera - Course 1
Typology: Exams
1 / 3
This page cannot be seen from the preview
Don't miss anything!


Deep Learning Coursera - Course 1 Supervised Learning - examples [Input(x), Output(y), Application] - Answer 1) Home Features, Price, Real Estate (NN)
z += b Vectorized - Answer w = [....] #but vertical x = [.....] #but vertical x is-element-of R^(n_x) Vectorized: z = np.dot(w,x) + b ... where np.dot(w,x) = w.T*x Vectorization (Purpose of Python for Deep Learning) - Answer Vectorized version runs much more quickly thant non-vectorized version (for loop used)
import numpy as np