Skip to content

Summing dimension mismatch #16

@simonandreashuber

Description

@simonandreashuber

In cliffordlayers/nn/functional/groupnorm.py on line 211:

running_cov_orig.copy_(running_cov.view(I, I, B, int(C / num_groups)).mean(1, keepdim=False))

I get a tensor size mismatch error. I think the dimension 1 is wrong and it should be 2:

running_cov_orig.copy_(running_cov.view(I, I, B, int(C / num_groups)).mean(2, keepdim=False))

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions