From 492acef4e7db41645c29335ef6b6c0a572586852 Mon Sep 17 00:00:00 2001 From: "askerosted@gmail.com" Date: Mon, 22 Jan 2024 15:36:40 +0900 Subject: [PATCH] small change to description --- src/graphnet/models/graphs/nodes/nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphnet/models/graphs/nodes/nodes.py b/src/graphnet/models/graphs/nodes/nodes.py index d8761b887..4056f93cf 100644 --- a/src/graphnet/models/graphs/nodes/nodes.py +++ b/src/graphnet/models/graphs/nodes/nodes.py @@ -282,7 +282,7 @@ def _construct_nodes(self, x: torch.Tensor) -> Data: x[:, [self._charge_index, self._time_index]], counts.cumsum()[:-1] ) - # add total charge to unique dom features and apply log10 scaling + # add total charge to unique dom features and apply inverse hyperbolic sine scaling time_charge = np.stack( [ (image[0, 1], np.arcsinh(5 * image[:, 0].sum()) / 5)