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
While experimenting with various models while adjusting SbmBeamHandler.benchmarker_wrappers in sbm_config_mwe.gin, I found that models such as GIN, MLP, APPNP, SGC, and GATv2 in basic_gnn.py did not run except for GAT and GCN GraphSAGE. All raises "TypeError: 'NoneType' object is not subscriptable [while running 'Benchmark Simple GCN.']".
How to solve this case?
I modified SbmBeamHandler.benchmarker_wrappers as below to run ./main_local_mwe.sh
SbmBeamHandler.benchmarker_wrappers = [
@GAT_/NNNodeBenchmark,
@GIN_/NNNodeBenchmark,
@APPNP_/NNNodeBenchmark,
@GATv2_/NNNodeBenchmark,
]
While experimenting with various models while adjusting SbmBeamHandler.benchmarker_wrappers in sbm_config_mwe.gin, I found that models such as GIN, MLP, APPNP, SGC, and GATv2 in basic_gnn.py did not run except for GAT and GCN GraphSAGE. All raises "TypeError: 'NoneType' object is not subscriptable [while running 'Benchmark Simple GCN.']".
How to solve this case?
I modified SbmBeamHandler.benchmarker_wrappers as below to run ./main_local_mwe.sh
SbmBeamHandler.benchmarker_wrappers = [
@GAT_/NNNodeBenchmark,
@GIN_/NNNodeBenchmark,
@APPNP_/NNNodeBenchmark,
@GATv2_/NNNodeBenchmark,
]