WXinlong / DenseCL

Dense Contrastive Learning (DenseCL) for self-supervised representation learning, CVPR 2021 Oral.
GNU General Public License v3.0
544 stars 70 forks source link

Dimensions of data #26

Open Tyanshan opened 2 years ago

Tyanshan commented 2 years ago

Thanks for the wonderful work about DenseCL.I have a code-related questions and want to consult with you.That is why the input len(x)==1 of DenseCLNeck, and what is the dimension of x[0]?

    assert len(x) == 1
    x = x[0]