From 11634dc7e874c392c66586da6ccfe0249fb42d03 Mon Sep 17 00:00:00 2001 From: Paul Kaftan <49405884+kaftanski@users.noreply.github.com> Date: Tue, 2 Jul 2024 10:42:24 +0200 Subject: [PATCH] Fix AttributeError of make_coordinate_slice in ImplicitRegistrator Closes MIAGroupUT/IDIR#6 --- models/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/models.py b/models/models.py index 085b530..afa0942 100644 --- a/models/models.py +++ b/models/models.py @@ -20,7 +20,7 @@ def __call__( # Use standard coordinate tensor if none is given if coordinate_tensor is None: - coordinate_tensor = self.make_coordinate_slice( + coordinate_tensor = general.make_coordinate_slice( output_shape, dimension, slice_pos )