Closed chinglamchoi closed 4 years ago
Got the above error when running moco/builder.py line 63: self.queue[:, ptr:ptr + batch_size] = keys.T. Does this .T refer to the softmax temperature?
self.queue[:, ptr:ptr + batch_size] = keys.T
.T
see https://pytorch.org/docs/stable/tensors.html#torch.Tensor.T
Ah thanks, version mismatch problem (I'm on 1.0.0).
Got the above error when running moco/builder.py line 63:
self.queue[:, ptr:ptr + batch_size] = keys.T
. Does this.T
refer to the softmax temperature?