Skip to content

Commit 9a9bde5

Browse files
authored
Update Lab2-Computer-Vision.ipynb
line 215 - typo "it it" --> "is it"
1 parent 932962c commit 9a9bde5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lab2-Computer-Vision.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@
212212
"\n",
213213
"Each layer of neurons need an **activation function** to tell them what to do. There's lots of options, but just use these for now. \n",
214214
"\n",
215-
"**Relu** effectively means \"If X>0 return X, else return 0\" -- so what it does it it only passes values 0 or greater to the next layer in the network.\n",
215+
"**Relu** effectively means \"If X>0 return X, else return 0\" -- so what it does is it only passes values 0 or greater to the next layer in the network.\n",
216216
"\n",
217217
"**Softmax** takes a set of values, and effectively picks the biggest one, so, for example, if the output of the last layer looks like [0.1, 0.1, 0.05, 0.1, 9.5, 0.1, 0.05, 0.05, 0.05], it saves you from fishing through it looking for the biggest value, and turns it into [0,0,0,0,1,0,0,0,0] -- The goal is to save a lot of coding!\n"
218218
]

0 commit comments

Comments
 (0)