facebookresearch / facebookresearch/moco
Report a mistake
Open
- Dominant language
- No language data
- Stars
- 5.1k
- Forks
- 802
- PR merge metrics
- No merged PRs in 30d
Description
maybe the 396th line in ```main_moco.py```
```
correct_k = correct[:k].view(-1).float().sum(0, keepdim=True)
```
should be
```
correct_k = correct[:k].contiguous().view(-1).float().sum(0, keepdim=True)
```
Contributor guide
Assessment
This issue has not been assessed yet.