()
| 14 | |
| 15 | @pytest.fixture |
| 16 | def dataset(): |
| 17 | # Generate a random binary classification problem. |
| 18 | return make_classification( |
| 19 | n_samples=1000, |
| 20 | n_features=100, |
| 21 | n_informative=75, |
| 22 | random_state=1111, |
| 23 | n_classes=2, |
| 24 | class_sep=2.5, |
| 25 | ) |
| 26 | |
| 27 | |
| 28 | # TODO: fix |
nothing calls this directly
no outgoing calls
no test coverage detected