Skip to content

Commit 55c0793

Browse files
committed
add explanation on vars and how data split works. added spaces before inline comments
1 parent 447bf6d commit 55c0793

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gnn_model/gnn_datamodule.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ def __init__(
3838
self.num_neighbors = num_neighbors
3939

4040
# Will be set in setup()
41-
self.data_summary = None # Contains organized time bins and feature data
42-
self.data_dict = None # Stores the graph structure with global indexing
43-
self.processed_data = None # Stores the processed data in PyG Data format
41+
self.data_summary = None # Contains organized time bins and feature data
42+
self.data_dict = None # Stores the graph structure with global indexing
43+
self.processed_data = None # Stores the processed data in PyG Data format
4444
self.train_data = None
4545
self.val_data = None
4646
self.test_data = None

0 commit comments

Comments
 (0)