(self)
| 6 | |
| 7 | class TestSklearn(unittest.TestCase): |
| 8 | def test_random_forest_classifier(self): |
| 9 | iris = datasets.load_iris() |
| 10 | X, y = iris.data, iris.target |
| 11 | rf1 = RandomForestClassifier() |
| 12 | rf1.fit(X,y) |
| 13 | |
| 14 | def test_linearn_classifier(self): |
| 15 | iris = datasets.load_iris() |
nothing calls this directly
no outgoing calls
no test coverage detected