-
Notifications
You must be signed in to change notification settings - Fork 653
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
How can I change the "batch_size" #38
Comments
change placeholder batch_size to None,but this is not useful,every epoch the model use full data, not node level。when graph is very big, need the change code to support node level train。 |
hello, do you know how to modify the value of the batch-size? |
hello, do you know how to modify the value of the batch-size? It seems can't change it in the layer.py |
hi, do you know how to modify the batch_size now? ^_^ |
GAT is a full batch GNN model. If you require a mini-batch model, you need to graph sampling first. |
I directly change the "batch_size" in file "execute_cora.py" from 1 to 10, and the following error occurred.
ValueError: Cannot feed value of shape (1, 2708, 1433) for Tensor 'input/Placeholder:0', which has shape '(10, 2708, 1433)'
So how can I change the "batch_size" when training or running the model ? Thx
The text was updated successfully, but these errors were encountered: