You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Training Loop code, there is a variable all_logits, which is present in the code and is accumulating the logits at each epoch but this accumulation is not being used anywhere.
I think it is better to remove all_logits from the code rather than keeping it as it causes confusion to the new users, it makes them think why are the logits being accumulated, when they are never being used.
If this seems an improvement, I can do a PR with the changes.
The text was updated successfully, but these errors were encountered:
📚 Documentation
Tutorial part: Write your own GNN module
In the Training Loop code, there is a variable
all_logits
, which is present in the code and is accumulating thelogits
at each epoch but this accumulation is not being used anywhere.I think it is better to remove
all_logits
from the code rather than keeping it as it causes confusion to the new users, it makes them think why are the logits being accumulated, when they are never being used.If this seems an improvement, I can do a PR with the changes.
The text was updated successfully, but these errors were encountered: