annotate tests/test_logistic_regression.py @ 20:d6d2ecb33c95
[logistic regression] smoke tests
author |
Jeff Hammel <k0scist@gmail.com> |
date |
Mon, 04 Sep 2017 08:36:24 -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()
|