Alejandro Moreo

Results 2 issues of Alejandro Moreo

I got confused with: ```python # compute logits anchor_dot_contrast = torch.div( torch.matmul(anchor_feature, contrast_feature.T), self.temperature) # for numerical stability logits_max, _ = torch.max(anchor_dot_contrast, dim=1, keepdim=True) logits = anchor_dot_contrast - logits_max.detach() ```...

A newcomer runs "pip install quapy" and wants to quickly test if it is working. All examples in the "examples" dir looks overwhelming The "quick example" in the readme downloads...