Replies: 1 comment 1 reply
-
Ok I thin I'm figuring out ( a bit slowly) :)
Here the model takes
This returns the embeddings for the final batch. Any comment /suggestion is highly appreciated :) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everybody,
Thanks to your previous suggestions I have finished to process my graph dataset of inorganic composition storing all entries in a
list
before, and then in a
DataLoader
object afterdata_loader = DataLoader(data_list, batch_size=100)
Now I have some perplexities to run even simple models on it.
I'm trying with
So after taking a batch of my train data in
DataLoader
and instantiating the model,when I try to run this first batch of data through the model by doing
model(data.x, data.edge_index)
I get
Beta Was this translation helpful? Give feedback.
All reactions