Share this postAI by Hand ✍️W10 - WideCopy linkFacebookEmailNotesMoreW10 - WideAI by Hand ✍️ Workbook - 25 Exercises 🏋️Tom YehApr 13, 20247Share this postAI by Hand ✍️W10 - WideCopy linkFacebookEmailNotesMore4Share10 Workbook Wide193KB ∙ PDF fileDownloadDownload
Exercise 19
B1 = ReLU(1*A1 - A2) = ReLU(2-3) = 0
Exercise 20
C3 = ReLU(B1 + B2) = ReLU(1+5) = 6
Here's what I got:
Exercise 9
Y2 = (2*1)+(1*-1)+(3*0)+(1*0)+(2*0)+(1*0)+(1*2)+(1*0)
Y2 = 2 -1 + 0 + 0 + 0 + 0 + 2 + 0
Y2 = 3
Exercise 17
Y1 = (3*1)+(2*1)+(1*0)+(1*2)+(0*0)+(2*1)+(5*0)+(7*-1)+(1*2)
Y1 = 3 + 2 + 0 + 2 + 0 + 2 + 0 - 7 + 2
Y1 = 4
Compounding errors on the next few exercises:
Exercise 19
B1 = ReLU((2*1)+(3*-1)+(1*0))
B1 = ReLU(-1)
B1 = 0
Exercise 20
C3 = ReLU(B1 + B2) = ReLU(0+5) = 5
Exercise 21
D4 = ReLU(C1 + C2 + C3 + C4) = ReLU(0+2+5+0+0) = 7
D5 = ReLU(0+0+5+4+1) = 10