view tvii/dot.py @ 2:1214c127fe43

steps towards logistic regression
author Jeff Hammel <k0scist@gmail.com>
date Wed, 30 Aug 2017 17:05:03 -0700
parents
children be09c8fc58b8
line wrap: on
line source

"""
dot product
"""

def dot(w, x):
    """inner dot product"""
    
    raise NotImplementedError('TODO')