| 5 | from hep_ml.preprocessing import BinTransformer |
| 6 | |
| 7 | class TestHepML(unittest.TestCase): |
| 8 | def test_preprocessing(self): |
| 9 | X = np.array([[1.1, 1.2, 1.3],[5.1, 6.4, 10.5]]) |
| 10 | transformer = BinTransformer().fit(X) |
| 11 | new_X = transformer.transform(X) |
| 12 | |
| 13 | self.assertEqual((2, 3), new_X.shape) |
nothing calls this directly
no outgoing calls
no test coverage detected