MCPcopy Create free account

hub / github.com/dddzg/up-detr / types & classes

Types & classes43 in github.com/dddzg/up-detr

↓ 4 callersClassNestedTensor
util/misc.py:295
↓ 2 callersClassMLP
Very simple multi-layer perceptron (also called FFN)
models/detr.py:318
↓ 2 callersClassSmoothedValue
Track a series of values and provide access to smoothed values over a window or the global series average.
util/misc.py:32
↓ 1 callersClassBackbone
ResNet backbone with frozen BatchNorm.
models/backbone.py:94
↓ 1 callersClassCocoDetection
datasets/coco.py:23
↓ 1 callersClassCocoEvaluator
datasets/coco_eval.py:28
↓ 1 callersClassCocoPanoptic
datasets/coco_panoptic.py:21
↓ 1 callersClassConvertCocoPolysToMask
datasets/coco.py:56
↓ 1 callersClassDETR
This is the DETR module that performs object detection
models/detr.py:23
↓ 1 callersClassDETRsegm
models/segmentation.py:30
↓ 1 callersClassGaussianBlur
Gaussian blur augmentation in SimCLR https://arxiv.org/abs/2002.05709
datasets/selfdet.py:110
↓ 1 callersClassHungarianMatcher
This class computes an assignment between the targets and the predictions of the network For efficiency reasons, the targets don't include the no
models/matcher.py:18
↓ 1 callersClassJoiner
models/backbone.py:113
↓ 1 callersClassMHAttentionMap
This is a 2D attention module, which only returns the attention softmax (no multiplication by value)
models/segmentation.py:147
↓ 1 callersClassMaskHeadSmallConv
Simple convolutional head, using group norm. Upsampling is done using a FPN approach
models/segmentation.py:76
↓ 1 callersClassPanopticEvaluator
datasets/panoptic_eval.py:19
↓ 1 callersClassPositionEmbeddingLearned
Absolute pos embedding, learned.
models/position_encoding.py:57
↓ 1 callersClassPositionEmbeddingSine
This is a more standard version of the position embedding, very similar to the one used by the Attention is all you need paper, generalized t
models/position_encoding.py:18
↓ 1 callersClassPostProcess
This module converts the model's output into the format expected by the coco api
models/detr.py:286
↓ 1 callersClassPostProcessPanoptic
This class converts the output of the model to the final panoptic result, in the format expected by the coco panoptic API
models/segmentation.py:249
↓ 1 callersClassPostProcessSegm
models/segmentation.py:226
↓ 1 callersClassSelfDet
SelfDet is a dataset class which implements random query patch detection. It randomly crops patches as queries from the given image with the
datasets/selfdet.py:33
↓ 1 callersClassSetCriterion
This class computes the loss for DETR. The process happens in two steps: 1) we compute hungarian assignment between ground truth boxes an
models/detr.py:89
↓ 1 callersClassTransformer
models/transformer.py:24
↓ 1 callersClassTransformerDecoder
models/transformer.py:93
↓ 1 callersClassTransformerDecoderLayer
models/transformer.py:194
↓ 1 callersClassTransformerEncoder
models/transformer.py:69
↓ 1 callersClassTransformerEncoderLayer
models/transformer.py:134
↓ 1 callersClassUPDETR
This is the UPDETR module for pre-training. UPDETR inherits from DETR with same backbone,transformer,object queries and etc.
models/updetr.py:15
ClassBackboneBase
models/backbone.py:64
ClassCenterCrop
datasets/transforms.py:175
ClassCompose
datasets/transforms.py:267
ClassFrozenBatchNorm2d
BatchNorm2d where the batch statistics and the affine parameters are fixed. Copy-paste from torchvision.misc.ops with added eps before rqsrt
models/backbone.py:25
ClassMetricLogger
util/misc.py:164
ClassNormalize
datasets/transforms.py:248
ClassRandomCrop
datasets/transforms.py:154
ClassRandomErasing
datasets/transforms.py:239
ClassRandomHorizontalFlip
datasets/transforms.py:187
ClassRandomPad
datasets/transforms.py:208
ClassRandomResize
datasets/transforms.py:197
ClassRandomSelect
Randomly selects between transforms1 and transforms2, with probability p for transforms1 and (1 - p) for transforms2
datasets/transforms.py:218
ClassRandomSizeCrop
datasets/transforms.py:163
ClassToTensor
datasets/transforms.py:234