forked from graphdeeplearning/benchmarking-gnns
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3963309
commit 1068260
Showing
436 changed files
with
4,288 additions
and
1,286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
configs/COLLAB_edge_classification_GraphSage_edgereprfeat.json
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file modified
0
configs/GraphTheoryProp_multitask_GIN_GraphTheoryProp_100k.json
100644 → 100755
Empty file.
Empty file modified
0
configs/GraphTheoryProp_multitask_GIN_PE_GraphTheoryProp_100k.json
100644 → 100755
Empty file.
Empty file modified
0
configs/GraphTheoryProp_multitask_GatedGCN_GraphTheoryProp_100k.json
100644 → 100755
Empty file.
Empty file modified
0
configs/GraphTheoryProp_multitask_GatedGCN_PE_GraphTheoryProp_100k.json
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
configs/TUs_graph_classification_3WLGNN_PROTEINS_full_100k.json
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
configs/TUs_graph_classification_GatedGCN_PROTEINS_full_100k.json
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file modified
0
configs/TUs_graph_classification_GraphSage_PROTEINS_full_100k.json
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
configs/TUs_graph_classification_MoNet_PROTEINS_full_100k.json
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file modified
0
configs/TUs_graph_classification_RingGNN_PROTEINS_full_100k.json
100644 → 100755
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"gpu": { | ||
"use": true, | ||
"id": 0 | ||
}, | ||
|
||
"model": "GAT", | ||
"dataset": "WikiCS", | ||
|
||
"out_dir": "out/WikiCS_node_classification/", | ||
|
||
"params": { | ||
"seed": 41, | ||
"epochs": 1000, | ||
"init_lr": 1e-2, | ||
"lr_reduce_factor": 0.5, | ||
"lr_schedule_patience": 25, | ||
"min_lr": 1e-5, | ||
"weight_decay": 5e-4, | ||
"print_epoch_interval": 5, | ||
"max_time": 24 | ||
}, | ||
|
||
"net_params": { | ||
"L": 4, | ||
"n_heads": 8, | ||
"hidden_dim": 15, | ||
"out_dim": 120, | ||
"residual": true, | ||
"readout": "mean", | ||
"in_feat_dropout": 0.0, | ||
"dropout": 0.35, | ||
"batch_norm": true, | ||
"self_loop": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"gpu": { | ||
"use": true, | ||
"id": 0 | ||
}, | ||
|
||
"model": "GCN", | ||
"dataset": "WikiCS", | ||
|
||
"out_dir": "out/WikiCS_node_classification/", | ||
|
||
"params": { | ||
"seed": 41, | ||
"epochs": 1000, | ||
"init_lr": 1e-2, | ||
"lr_reduce_factor": 0.5, | ||
"lr_schedule_patience": 25, | ||
"min_lr": 1e-5, | ||
"weight_decay": 5e-4, | ||
"print_epoch_interval": 5, | ||
"max_time": 24 | ||
}, | ||
|
||
"net_params": { | ||
"L": 4, | ||
"hidden_dim": 120, | ||
"out_dim": 120, | ||
"residual": true, | ||
"readout": "mean", | ||
"in_feat_dropout": 0.0, | ||
"dropout": 0.35, | ||
"batch_norm": true, | ||
"self_loop": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"gpu": { | ||
"use": true, | ||
"id": 0 | ||
}, | ||
|
||
"model": "GIN", | ||
"dataset": "WikiCS", | ||
|
||
"out_dir": "out/WikiCS_node_classification/", | ||
|
||
"params": { | ||
"seed": 41, | ||
"epochs": 1000, | ||
"init_lr": 1e-2, | ||
"lr_reduce_factor": 0.5, | ||
"lr_schedule_patience": 25, | ||
"min_lr": 1e-5, | ||
"weight_decay": 5e-4, | ||
"print_epoch_interval": 5, | ||
"max_time": 24 | ||
}, | ||
|
||
"net_params": { | ||
"L": 4, | ||
"hidden_dim": 96, | ||
"residual": true, | ||
"readout": "sum", | ||
"n_mlp_GIN": 2, | ||
"learn_eps_GIN": true, | ||
"neighbor_aggr_GIN": "sum", | ||
"in_feat_dropout": 0.0, | ||
"dropout": 0.35, | ||
"batch_norm": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"gpu": { | ||
"use": true, | ||
"id": 0 | ||
}, | ||
|
||
"model": "GatedGCN", | ||
"dataset": "WikiCS", | ||
|
||
"out_dir": "out/WikiCS_node_classification/", | ||
|
||
"params": { | ||
"seed": 41, | ||
"epochs": 1000, | ||
"init_lr": 1e-2, | ||
"lr_reduce_factor": 0.5, | ||
"lr_schedule_patience": 25, | ||
"min_lr": 1e-5, | ||
"weight_decay": 5e-4, | ||
"print_epoch_interval": 5, | ||
"max_time": 24 | ||
}, | ||
|
||
"net_params": { | ||
"L": 4, | ||
"hidden_dim": 65, | ||
"out_dim": 65, | ||
"residual": true, | ||
"readout": "mean", | ||
"in_feat_dropout": 0.0, | ||
"dropout": 0.35, | ||
"batch_norm": true, | ||
"self_loop": false, | ||
"pos_enc": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"gpu": { | ||
"use": true, | ||
"id": 0 | ||
}, | ||
|
||
"model": "GraphSage", | ||
"dataset": "WikiCS", | ||
|
||
"out_dir": "out/WikiCS_node_classification/", | ||
|
||
"params": { | ||
"seed": 41, | ||
"epochs": 1000, | ||
"init_lr": 1e-2, | ||
"lr_reduce_factor": 0.5, | ||
"lr_schedule_patience": 25, | ||
"min_lr": 1e-5, | ||
"weight_decay": 5e-4, | ||
"print_epoch_interval": 5, | ||
"max_time": 24 | ||
}, | ||
|
||
"net_params": { | ||
"L": 4, | ||
"hidden_dim": 78, | ||
"out_dim": 78, | ||
"residual": true, | ||
"readout": "mean", | ||
"in_feat_dropout": 0.0, | ||
"dropout": 0.35, | ||
"batch_norm": true, | ||
"sage_aggregator": "maxpool" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"gpu": { | ||
"use": true, | ||
"id": 0 | ||
}, | ||
|
||
"model": "MLP", | ||
"dataset": "WikiCS", | ||
|
||
"out_dir": "out/WikiCS_node_classification/", | ||
|
||
"params": { | ||
"seed": 41, | ||
"epochs": 1000, | ||
"init_lr": 1e-2, | ||
"lr_reduce_factor": 0.5, | ||
"lr_schedule_patience": 25, | ||
"min_lr": 1e-5, | ||
"weight_decay": 5e-4, | ||
"print_epoch_interval": 5, | ||
"max_time": 24 | ||
}, | ||
|
||
"net_params": { | ||
"L": 4, | ||
"hidden_dim": 125, | ||
"out_dim": 125, | ||
"readout": "mean", | ||
"gated": false, | ||
"in_feat_dropout": 0.0, | ||
"dropout": 0.35 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"gpu": { | ||
"use": true, | ||
"id": 0 | ||
}, | ||
|
||
"model": "MoNet", | ||
"dataset": "WikiCS", | ||
|
||
"out_dir": "out/WikiCS_node_classification/", | ||
|
||
"params": { | ||
"seed": 41, | ||
"epochs": 1000, | ||
"init_lr": 1e-2, | ||
"lr_reduce_factor": 0.5, | ||
"lr_schedule_patience": 25, | ||
"min_lr": 1e-5, | ||
"weight_decay": 5e-4, | ||
"print_epoch_interval": 5, | ||
"max_time": 24 | ||
}, | ||
|
||
"net_params": { | ||
"L": 4, | ||
"hidden_dim": 80, | ||
"out_dim": 80, | ||
"residual": true, | ||
"readout": "mean", | ||
"kernel": 3, | ||
"pseudo_dim_MoNet": 2, | ||
"in_feat_dropout": 0.0, | ||
"dropout": 0.35, | ||
"batch_norm": true, | ||
"pos_enc": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"gpu": { | ||
"use": true, | ||
"id": 0 | ||
}, | ||
|
||
"model": "MoNet", | ||
"dataset": "WikiCS", | ||
|
||
"out_dir": "out/WikiCS_node_classification_PE/", | ||
|
||
"params": { | ||
"seed": 41, | ||
"epochs": 1000, | ||
"init_lr": 1e-2, | ||
"lr_reduce_factor": 0.5, | ||
"lr_schedule_patience": 25, | ||
"min_lr": 1e-5, | ||
"weight_decay": 5e-4, | ||
"print_epoch_interval": 5, | ||
"max_time": 24 | ||
}, | ||
|
||
"net_params": { | ||
"L": 4, | ||
"hidden_dim": 80, | ||
"out_dim": 80, | ||
"residual": true, | ||
"readout": "mean", | ||
"kernel": 3, | ||
"pseudo_dim_MoNet": 2, | ||
"in_feat_dropout": 0.0, | ||
"dropout": 0.35, | ||
"batch_norm": true, | ||
"pos_enc": true, | ||
"pos_enc_dim": 20 | ||
} | ||
} |
Oops, something went wrong.