Skip to content

Commit

Permalink
fix tencent train_mask bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
yifanfeng97 committed Jan 29, 2024
1 parent 5496287 commit 357166a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dhg/data/tencent.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,17 +110,17 @@ def __init__(self, data_root: Optional[str] = None) -> None:
"preprocess": [to_long_tensor],
},
"train_mask": {
"upon": [{"filename": "train_mask.pkl", "md5": "3e4de1d3b6b8b47bd729d4f59c65583d"}],
"upon": [{"filename": "train_mask.pkl", "md5": "2888a1fcc5162767d17a92b798a809e8"}],
"loader": load_from_pickle,
"preprocess": [to_bool_tensor],
},
"val_mask": {
"upon": [{"filename": "val_mask.pkl", "md5": "e8e42dc2ee21e733f7a2c733f162cea9"}],
"upon": [{"filename": "val_mask.pkl", "md5": "60deaa9e1df986c44059e795feaa2351"}],
"loader": load_from_pickle,
"preprocess": [to_bool_tensor],
},
"test_mask": {
"upon": [{"filename": "test_mask.pkl", "md5": "783283d2a5f2bee5a83d0d8e11ef9e5e"}],
"upon": [{"filename": "test_mask.pkl", "md5": "3f0325139633d3c258fb52d634a4f510"}],
"loader": load_from_pickle,
"preprocess": [to_bool_tensor],
},
Expand Down

0 comments on commit 357166a

Please sign in to comment.