Working tree with samples and first test

This commit is contained in:
2020-05-10 14:25:58 +02:00
parent 2ca25fd656
commit b9ea24696f
8 changed files with 157 additions and 0 deletions

14
tests/Stree_test.py Normal file
View File

@@ -0,0 +1,14 @@
import unittest
from trees.Stree import Stree
class Stree_test(unittest.TestCase):
def __init__(self, *args, **kwargs):
self.random_state = 17
self._model = Stree(random_state=self.random_state)
super(Stree_test, self).__init__(*args, **kwargs)
def test_split_data(self):
self.assertTrue(True)

0
tests/__init__.py Normal file
View File