Mercurial > hg > tvii
changeset 13:8cb116d63a78
[notes]
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 03 Sep 2017 12:04:00 -0700 |
parents | 8d25213513b4 |
children | ec5f97abf8ed |
files | tvii/logistic_regression.py |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/tvii/logistic_regression.py Sun Sep 03 11:43:55 2017 -0700 +++ b/tvii/logistic_regression.py Sun Sep 03 12:04:00 2017 -0700 @@ -15,7 +15,10 @@ def logistic_regression(_): """the slow way""" - J = 0, dw1=0, dw2=0, db=0; + J = 0 + dw1 =0 + dw2=0 + db=0 def logistic_regression(nx): dw = np.zeros(nx)