Computational complexity of one GAT layer

How to calculate the calculation amount and parameter amount of a layer of GAT like calculating the amount of calculation and parameter amount of a layer of convolutional layer?

1 Like

Regarding the time complexity of GAT, see page 5 of the paper: https://arxiv.org/pdf/1710.10903.pdf

To get the number of parameters in a PyTorch model, see python - Check the total number of parameters in a PyTorch model - Stack Overflow

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.