Mercurial > hg > tvii
view tests/test_logistic_regression.py @ 18:e92fc4a17336
add failing test
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 03 Sep 2017 19:40:29 -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()