CLIP-ReID
CLIP-ReID copied to clipboard
Official implementation for "CLIP-ReID: Exploiting Vision-Language Model for Image Re-identification without Concrete Text Labels" (AAAI 2023)
I'm using two classes of data for the first and second stages of training, but the model doesn't update in the second stage. When I refine the two classes into...
File "clipreid\model\make_model_clipreid.py", line 162, in load_param self.state_dict()[i.replace('module.', '')].copy_(param_dict[i]) RuntimeError: output with shape [1, 768] doesn't match the broadcast shape [6, 768]
what's mean to n_ctx = 4? n_cls_ctx = 4 ctx_init = "A photo of a X X X X person." n_ctx = 4 means person index is 4 bits, is...
CUDA_VISIBLE_DEVICES=0 python train.py --config_file configs/person/cnn_base.yml
def stem(x): for conv, bn in [(self.conv1, self.bn1), (self.conv2, self.bn2), (self.conv3, self.bn3)]: x = self.relu(bn(conv(x))) x = self.avgpool(x) return x error: self.bn1 = nn.BatchNorm2d(width // 2) RuntimeError: cuDNN error: CUDNN_STATUS_EXECUTION_FAILED