Dummy mnist dataset builder pre-generated.
(
tmp_path_factory: pytest.TempPathFactory,
)
| 129 | |
| 130 | @pytest.fixture(scope='session') |
| 131 | def dummy_mnist( |
| 132 | tmp_path_factory: pytest.TempPathFactory, |
| 133 | ) -> dataset_builder.DatasetBuilder: |
| 134 | """Dummy mnist dataset builder pre-generated.""" |
| 135 | from tensorflow_datasets import testing # pylint: disable=g-import-not-at-top |
| 136 | |
| 137 | return _make_dataset(tmp_path_factory, testing.DummyMnist) |
| 138 | |
| 139 | |
| 140 | @pytest.fixture(scope='session') |
nothing calls this directly
no test coverage detected