Mercurial > hg > tvii
annotate tests/test_logistic_regression.py @ 16:b95fe82ac9ce
more notes to self
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 03 Sep 2017 13:17:33 -0700 |
parents | b6a146f0a61b |
children | 3713c6733990 |
rev | line source |
---|---|
11 | 1 #!/usr/bin/env python |
2 | |
3 """ | |
4 test logistic regression | |
5 """ | |
6 | |
7 import os | |
8 import unittest | |
9 from tvii import logistic_regression | |
10 | |
11 class LogisticRegresionTests(unittest.TestCase): | |
12 def test_basic(self): | |
13 """placeholder""" | |
14 | |
15 if __name__ == '__main__': | |
16 unittest.main() |