Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Learnable parameters of Fast-TGCN #7

Open
LucasKre opened this issue Jan 20, 2025 · 0 comments
Open

Learnable parameters of Fast-TGCN #7

LucasKre opened this issue Jan 20, 2025 · 0 comments

Comments

@LucasKre
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant