Mercurial > hg > tvii
view tests/test_logistic_regression.py @ 19:cd43ce453358
[numpy] of course we have to cast everything here too
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 03 Sep 2017 20:46:26 -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()