We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d1789c commit 98c0fdbCopy full SHA for 98c0fdb
tensorflow_datasets/datasets/segment_anything/segment_anything_dataset_builder.py
@@ -76,6 +76,9 @@ class Builder(tfds.core.GeneratorBasedBuilder):
76
f'Download the links file from {_HOMEPAGE_URL}. `manual_dir` should'
77
f' contain the links file saved as {_LOCAL_LINKS_FILE_NAME}.'
78
)
79
+ # The dataset is ~1000 * 10.5GB = ~10.5TB big, so we try to increase
80
+ # parallelism to download. The default is 50.
81
+ MAX_SIMULTANEOUS_DOWNLOADS = 100
82
83
def _info(self) -> tfds.core.DatasetInfo:
84
"""Returns the dataset metadata."""
0 commit comments