We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bc6bbd commit 665a329Copy full SHA for 665a329
Module 3/Logistic Regression.ipynb
@@ -190,12 +190,12 @@
190
],
191
"source": [
192
"def sigmoid(z):\n",
193
- " # ====================== YOUR CODE HERE ======================\n",
+ " # ====================== YOUR CODE HERE =====================\n",
194
" # Instructions: Compute the sigmoid of each value of z (z can be a matrix,\n",
195
" # vector or scalar). \n",
196
" sig=1/(1+np.exp(-z))\n",
197
" \n",
198
- " # ============================================================\n",
+ " # ===========================================================\n",
199
" return sig\n",
200
"sigmoid(0)"
201
]
0 commit comments