-
Hi everyone! I am doing edge classification on a big dataset and the GPU is running out of memory even when I'm doing batching. Thank you in advance!
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This line |
Beta Was this translation helpful? Give feedback.
This line
batch_index = set_diff_1d(batch["student", "takes", "code"].e_id,test_val_indices).to(device)
was taking too much memory, hence OOM problem. So i proceeded to split the graph into train, test and val graphs. Now it works as ti should