From 0f347e39d14ad7f09d4e1296fe0e8c5c476475a8 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Fri, 13 Dec 2024 06:59:16 +0000 Subject: [PATCH] fix typos --- examples/network_traffic_prediction/nr_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/network_traffic_prediction/nr_models.py b/examples/network_traffic_prediction/nr_models.py index dbe387a7d..7d5a97d43 100644 --- a/examples/network_traffic_prediction/nr_models.py +++ b/examples/network_traffic_prediction/nr_models.py @@ -363,7 +363,7 @@ def forward(self, blocks, node_feats, edge_feats, labels, input_nodes=None): Input node features for each node type in the format of {ntype: tensor}. edge_feats: list of dict of tensors Input edge features for each edge type in the format of [{etype: tensor}, ...], - or [{}, {}. ...] for zero number of edges in input blocks. The length of e_hs + or [{}, {}. ...] for zero number of edges in input blocks. The length of edge_feats should be equal to the number of gnn layers. labels: dict of tensor A dict of node/edge type and lables in format {type_str, tensor}.