pretransform in InMemoryDataset #5065
Unanswered
downeykking
asked this question in
Q&A
Replies: 0 comments
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.
-
I want to construct an original dataset, the dataset already includes
x, y, edge_index
, but after the dataset has been generated, I want to add another feature and want to concat tox
. The originalx
has been generateddata.pt
throughInMemoryDataset
, which can be loaded quickly. When I want to add new features, I need to delete the processeddata.pt
and concat new feature withx
in functiondef process(self):
Is there a better way to quickly concat new feature todata.x
? Thanks in advance!Beta Was this translation helpful? Give feedback.
All reactions