view tests/test_logistic_regression.py @ 15:926c127305fa

[np] this is how broadcasting works
author Jeff Hammel <k0scist@gmail.com>
date Sun, 03 Sep 2017 12:11:03 -0700
parents b6a146f0a61b
children 3713c6733990
line wrap: on
line source

#!/usr/bin/env python

"""
test logistic regression
"""

import os
import unittest
from tvii import logistic_regression

class LogisticRegresionTests(unittest.TestCase):
    def test_basic(self):
        """placeholder"""

if __name__ == '__main__':
    unittest.main()