From 2f778a911ea790a35d3c2303a98aa1eb797bbcd0 Mon Sep 17 00:00:00 2001 From: RasmusOrsoe Date: Fri, 13 Sep 2024 16:14:53 +0200 Subject: [PATCH] remove unintended comment --- src/graphnet/models/graphs/graph_definition.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphnet/models/graphs/graph_definition.py b/src/graphnet/models/graphs/graph_definition.py index 6a7b6a777..9c6c266c7 100644 --- a/src/graphnet/models/graphs/graph_definition.py +++ b/src/graphnet/models/graphs/graph_definition.py @@ -224,7 +224,7 @@ def forward( # type: ignore input_features = torch.tensor(input_features, dtype=self.dtype) # Standardize / Scale node features - # input_features = self._detector(input_features, input_feature_names) + input_features = self._detector(input_features, input_feature_names) # Create graph & get new node feature names graph, node_feature_names = self._node_definition(input_features)