Mercurial > hg > tvii
annotate tests/test_logistic_regression.py @ 13:8cb116d63a78
[notes]
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Sun, 03 Sep 2017 12:04:00 -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() |
