build_streaming_ade20k_dataloader#

composer.datasets.build_streaming_ade20k_dataloader(global_batch_size, remote, *, local='/tmp/mds-cache/mds-ade20k/', split='train', drop_last=True, shuffle=True, base_size=512, min_resize_scale=0.5, max_resize_scale=2.0, final_size=512, ignore_background=True, predownload=100000, keep_zip=None, download_retry=2, download_timeout=60, validate_hash=None, shuffle_seed=None, num_canonical_nodes=None, **dataloader_kwargs)[source]#

Build an ADE20k streaming dataset.

Parameters
  • global_batch_size (int) โ€“ Global batch size.

  • remote (str) โ€“ Remote directory (S3 or local filesystem) where dataset is stored.

  • local (str) โ€“ Local filesystem directory where dataset is cached during operation. Default: '/tmp/mds-cache/mds-ade20k/`.

  • split (str) โ€“ The dataset split to use, either โ€˜trainโ€™ or โ€˜valโ€™. Default: 'train`.

  • base_size (int) โ€“ Initial size of the image and target before other augmentations. Default: 512.

  • min_resize_scale (float) โ€“ The minimum value the samples can be rescaled. Default: 0.5.

  • max_resize_scale (float) โ€“ The maximum value the samples can be rescaled. Default: 2.0.

  • final_size (int) โ€“ The final size of the image and target. Default: 512.

  • ignore_background (bool) โ€“ If true, ignore the background class when calculating the training loss. Default: true.

  • predownload (int, optional) โ€“ Target number of samples ahead to download the shards of while iterating. Defaults to 100_000.

  • keep_zip (bool, optional) โ€“ Whether to keep or delete the compressed file when decompressing downloaded shards. If set to None, keep iff remote is local. Defaults to None.

  • download_retry (int) โ€“ Number of download re-attempts before giving up. Defaults to 2.

  • download_timeout (float) โ€“ Number of seconds to wait for a shard to download before raising an exception. Defaults to 60.

  • validate_hash (str, optional) โ€“ Optional hash or checksum algorithm to use to validate shards. Defaults to None.

  • shuffle_seed (int, optional) โ€“ Seed for shuffling, or None for random seed. Defaults to None.

  • num_canonical_nodes (int, optional) โ€“ Canonical number of nodes for shuffling with resumption. Defaults to None, which is interpreted as the number of nodes of the initial run.

  • **dataloader_kwargs (Dict[str, Any]) โ€“ Additional settings for the dataloader (e.g. num_workers, etc.)