Skip to content

Internal #11052

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Closed
wants to merge 1 commit into from
Closed

Internal #11052

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tensorflow_datasets/testing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
from tensorflow_datasets.testing.test_utils import dummy_croissant_file
from tensorflow_datasets.testing.test_utils import DummyBeamDataset
from tensorflow_datasets.testing.test_utils import DummyDataset
from tensorflow_datasets.testing.test_utils import DummyDatasetWithConfigBuilder
from tensorflow_datasets.testing.test_utils import DummyDatasetCollection
from tensorflow_datasets.testing.test_utils import DummyDatasetSharedGenerator
from tensorflow_datasets.testing.test_utils import DummyMnist
Expand Down Expand Up @@ -70,6 +71,7 @@
"dummy_croissant_file": "tensorflow_datasets.testing.test_utils",
"DummyBeamDataset": "tensorflow_datasets.testing.test_utils",
"DummyDataset": "tensorflow_datasets.testing.test_utils",
"DummyDatasetWithConfigBuilder": "tensorflow_datasets.testing.test_utils",
"DummyDatasetCollection": "tensorflow_datasets.testing.test_utils",
"DummyDatasetSharedGenerator": "tensorflow_datasets.testing.test_utils",
"DummyMnist": "tensorflow_datasets.testing.test_utils",
Expand Down
3 changes: 2 additions & 1 deletion tensorflow_datasets/testing/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,14 @@
from tensorflow_datasets.core import dataset_info
from tensorflow_datasets.core import example_serializer
from tensorflow_datasets.core import features
from tensorflow_datasets.core import features as features_lib
from tensorflow_datasets.core import lazy_imports_lib
from tensorflow_datasets.core import naming
from tensorflow_datasets.core import splits as splits_lib
from tensorflow_datasets.core import utils
from tensorflow_datasets.core.utils.lazy_imports_utils import mlcroissant as mlc
from tensorflow_datasets.core.utils.lazy_imports_utils import tensorflow as tf


_GCS_ACCESS_FNS = {
'original_info': utils.gcs_utils.gcs_dataset_info_files,
'dummy_info': lambda _: [],
Expand Down
Loading