Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Yiwen Yuan committed Nov 6, 2024
1 parent 5bc93a2 commit 582d5ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions benchmark/tgt_ijcai_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,10 +231,10 @@ def create_edge(data, behavior, beh_idx, pkey_name, pkey_idx):
model_cls = IDGNN
elif args.model in ["contextgnn", "shallowrhsgnn"]:
model_search_space = {
"encoder_channels": [32, 64, 128, 256],
"encoder_channels": [32, 64, 128],
"encoder_layers": [2, 4],
"channels": [32, 64, 128, 256],
"embedding_dim": [32, 64, 128, 256],
"channels": [32, 64, 128],
"embedding_dim": [32, 64, 128],
"norm": ["layer_norm", "batch_norm"],
"rhs_emb_mode": [
RHSEmbeddingMode.FUSION, RHSEmbeddingMode.FEATURE,
Expand Down

0 comments on commit 582d5ee

Please sign in to comment.