From 2294bdd97f89d77d5c56054eebdc1979a102991f Mon Sep 17 00:00:00 2001 From: Alessandro Vullo Date: Tue, 17 Sep 2024 15:12:07 +0100 Subject: [PATCH] Yet another runtime error. --- tests/unit/models/gpflux/test_interface.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/unit/models/gpflux/test_interface.py b/tests/unit/models/gpflux/test_interface.py index 8a59b5346..7be0356e8 100644 --- a/tests/unit/models/gpflux/test_interface.py +++ b/tests/unit/models/gpflux/test_interface.py @@ -61,7 +61,6 @@ def model_keras(self) -> tf_keras.Model: def optimizer(self) -> tf_keras.optimizers.Optimizer: return self._optimizer - @inherit_check_shapes def sample_encoded(self, query_points: TensorType, num_samples: int) -> TensorType: # Taken from GPflow implementation of `GPModel.predict_f_samples` in gpflow.models.model mean, cov = self._model_gpflux.predict_f(query_points, full_cov=True)