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
if i implement the splitting methods in the base class we assume (using sklearn's train/test split) that the datasets fit into memory.
However, this might not be the case for all datasets in the future.
One option would be that those future datasets override methods that might cause running out of memory. Other option might be to have different base classes and the default one would be a InMemoryDataset
The text was updated successfully, but these errors were encountered:
if i implement the splitting methods in the base class we assume (using sklearn's train/test split) that the datasets fit into memory.
However, this might not be the case for all datasets in the future.
One option would be that those future datasets override methods that might cause running out of memory. Other option might be to have different base classes and the default one would be a
InMemoryDataset
The text was updated successfully, but these errors were encountered: