Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion homeworks/assignment03_derivatives/derivatives.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ def l2_reg_derivative(w):
@staticmethod
def l1_reg_derivative(w):
"""
Y : numpy array of shape (`n_observations`, `target_dimentionality`) or (`n_observations`,)
w : numpy array of shape (`n_features`, `target_dimentionality`) or (`n_features`,)

Return : numpy array of same shape as `w`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@
" @staticmethod\n",
" def l1_reg_derivative(w):\n",
" \"\"\"\n",
" Y : numpy array of shape (`n_observations`, `target_dimentionality`) or (`n_observations`,)\n",
" w : numpy array of shape (`n_features`, `target_dimentionality`) or (`n_features`,)\n",
"\n",
" Return : numpy array of same shape as `w`\n",
Expand Down