Skip to content

Learnable parameters of Fast-TGCN #7

@LucasKre

Description

@LucasKre

First of all, thank you for sharing the code of your work with us.

The publication states that Fast-TGCN uses approx. 4.13 million learnable parameters. However, if I use the code published here, it uses approx. 24.44 million learnable parameters.

def count_parameters(model):
    return sum(p.numel() for p in model.parameters() if p.requires_grad)

model = Baseline()
print(f"Nr of parameters in million: {count_parameters(model)/1e6}")

Can you tell me if you used a different number of parameters in the experiments you conducted?
Thanks

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