It looks like there's a subtle bug on this line: https://github.com/AntixK/PyTorch-Model-Compare/blob/main/torch_cka/cka.py#L156 ``` num_batches = min(len(dataloader1), len(dataloader1)) ``` `len(dataloader1)` is in there twice, I assume it's supposed to be ``` num_batches = min(len(dataloader1), len(dataloader2)) ```
It looks like there's a subtle bug on this line:
https://github.com/AntixK/PyTorch-Model-Compare/blob/main/torch_cka/cka.py#L156
len(dataloader1)is in there twice, I assume it's supposed to be