(self)
| 5 | |
| 6 | class TestRGF(unittest.TestCase): |
| 7 | def test_classifier(self): |
| 8 | iris = datasets.load_iris() |
| 9 | X, y = iris.data, iris.target |
| 10 | |
| 11 | rgf = RGFClassifier(max_leaf=400, |
| 12 | algorithm="RGF_Sib", |
| 13 | test_interval=100, |
| 14 | n_iter=1) |
| 15 | |
| 16 | rgf.fit(X,y) |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected