annotate 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 |
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()
|