| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- """ Object detection loader/collate
- Hacked together by Ross Wightman
- """
- # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- import torch
- import torch.utils.data
- from .transforms import *
- from utils.distributed_sampler import OrderedDistributedSampler
- from functools import partial
- MAX_NUM_INSTANCES = 100
- def fast_collate(memory_format, batch):
- batch_size = len(batch)
- # FIXME this needs to be more robust
- target = dict()
- for k, v in batch[0][1].items():
- if isinstance(v, np.ndarray):
- # if a numpy array, assume it relates to object instances, pad to MAX_NUM_INSTANCES
- target_shape = (batch_size, MAX_NUM_INSTANCES)
- if len(v.shape) > 1:
- target_shape = target_shape + v.shape[1:]
- target_dtype = torch.float32
- elif isinstance(v, (tuple, list)):
- # if tuple or list, assume per batch
- target_shape = (batch_size, len(v))
- target_dtype = torch.float32 if isinstance(v[0], float) else torch.int32
- elif isinstance(v, torch.Tensor):
- target_dtype = v.dtype
- target_shape = (batch_size,) + tuple(v.size())
- else:
- # scalar, assume per batch
- target_shape = batch_size,
- target_dtype = torch.float32 if isinstance(v, float) else torch.int64
- target[k] = torch.zeros(target_shape, dtype=target_dtype)
- tensor = torch.zeros((batch_size, *batch[0][0].shape), dtype=torch.uint8).contiguous(
- memory_format=memory_format
- )
- for i in range(batch_size):
- tensor[i] += torch.from_numpy(batch[i][0])
- for tk, tv in batch[i][1].items():
- if isinstance(tv, np.ndarray) and len(tv.shape):
- target[tk][i, 0:tv.shape[0]] = torch.from_numpy(tv)
- elif isinstance(tv, torch.Tensor):
- target[tk][i] = tv
- else:
- target[tk][i] = torch.tensor(tv, dtype=target[tk].dtype)
- return tensor, target
- class PrefetchLoader:
- def __init__(self,
- loader,
- mean=IMAGENET_DEFAULT_MEAN,
- std=IMAGENET_DEFAULT_STD):
- self.loader = loader
- self.mean = torch.tensor([x * 255 for x in mean]).cuda().view(1, 3, 1, 1)
- self.std = torch.tensor([x * 255 for x in std]).cuda().view(1, 3, 1, 1)
- def __iter__(self):
- stream = torch.cuda.Stream()
- first = True
- for next_input, next_target in self.loader:
- with torch.cuda.stream(stream):
- next_input = next_input.cuda(non_blocking=True)
- next_input = next_input.float().sub_(self.mean).div_(self.std)
- next_target = {k: v.cuda(non_blocking=True) for k, v in next_target.items()}
- if not first:
- yield input, target
- else:
- first = False
- torch.cuda.current_stream().wait_stream(stream)
- input = next_input
- target = next_target
- yield input, target
- def __len__(self):
- return len(self.loader)
- @property
- def sampler(self):
- return self.loader.batch_sampler
- class IterationBasedBatchSampler(torch.utils.data.sampler.BatchSampler):
- """
- Wraps a BatchSampler, resampling from it until
- a specified number of iterations have been sampled
- """
- def __init__(self, batch_sampler):
- self.batch_sampler = batch_sampler
- def __iter__(self):
- while True:
- for batch in self.batch_sampler:
- yield batch
- def __len__(self):
- return len(self.batch_sampler)
- def set_epoch(self, epoch):
- if hasattr(self.batch_sampler.sampler, "set_epoch"):
- self.batch_sampler.sampler.set_epoch(epoch)
- def create_loader(
- dataset,
- input_size,
- batch_size,
- is_training=False,
- use_prefetcher=True,
- interpolation='bilinear',
- fill_color='mean',
- mean=IMAGENET_DEFAULT_MEAN,
- std=IMAGENET_DEFAULT_STD,
- num_workers=1,
- distributed=False,
- pin_mem=False,
- memory_format=torch.contiguous_format
- ):
- if isinstance(input_size, tuple):
- img_size = input_size[-2:]
- else:
- img_size = input_size
- if is_training:
- transform = transforms_coco_train(
- img_size,
- interpolation=interpolation,
- use_prefetcher=use_prefetcher,
- fill_color=fill_color,
- mean=mean,
- std=std)
- else:
- transform = transforms_coco_eval(
- img_size,
- interpolation=interpolation,
- use_prefetcher=use_prefetcher,
- fill_color=fill_color,
- mean=mean,
- std=std)
- dataset.transform = transform
- sampler = None
- if distributed:
- if is_training:
- sampler = torch.utils.data.distributed.DistributedSampler(dataset)
- else:
- # This will add extra duplicate entries to result in equal num
- # of samples per-process, will slightly alter validation results
- sampler = OrderedDistributedSampler(dataset)
- else:
- sampler = torch.utils.data.RandomSampler(dataset)
- batch_sampler = torch.utils.data.sampler.BatchSampler(
- sampler, batch_size, drop_last=False)
- if is_training:
- batch_sampler = IterationBasedBatchSampler(batch_sampler)
- loader = torch.utils.data.DataLoader(
- dataset,
- shuffle=False,
- num_workers=num_workers,
- batch_sampler=batch_sampler,
- pin_memory=pin_mem,
- collate_fn=partial(fast_collate, memory_format) if use_prefetcher else torch.utils.data.dataloader.default_collate,
- )
- else:
- loader = torch.utils.data.DataLoader(
- dataset,
- batch_size=batch_size,
- shuffle=False,
- num_workers=num_workers,
- sampler=sampler,
- pin_memory=pin_mem,
- collate_fn=partial(fast_collate, memory_format) if use_prefetcher else torch.utils.data.dataloader.default_collate,
- )
- if use_prefetcher:
- loader = PrefetchLoader(loader, mean=mean, std=std)
- return loader
|