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
Why is normalize_label only applied when dataloading is from RAM? Where is it applied on disk?
This is fine because _save_data_to_files() internally calls _make_multitask_dataset(..., load_from_file=False), i.e., label normalization is already applied to datasets loaded from disk.
The
DatasetSubsampler
class fails ifprocessed_graph_data_path
is None, due to this line:graphium/graphium/data/sampler.py
Line 28 in 10fe04b
cache_data_path
should be depreciated in favor ofprocessed_graph_data_path
:graphium/graphium/data/datamodule.py
Line 773 in 10fe04b
load_from_file
should be its own parameter. Depending onprocessed_graph_data_path
means that either:load_from_file
parameter in the DatamoduleWhy is
normalize_label
only applied when dataloading is from RAM? Where is it applied on disk?graphium/graphium/data/datamodule.py
Line 1300 in 10fe04b
The text was updated successfully, but these errors were encountered: