From dfa93d7e634ed5cb37d7b7e21b2b9ede7453e73b Mon Sep 17 00:00:00 2001 From: Karl Higley Date: Tue, 31 Jan 2023 10:23:40 -0500 Subject: [PATCH] Fix the inference code's deprecation warning --- nvtabular/inference/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvtabular/inference/__init__.py b/nvtabular/inference/__init__.py index 2c9950cd275..7cca7edd2ec 100644 --- a/nvtabular/inference/__init__.py +++ b/nvtabular/inference/__init__.py @@ -17,7 +17,7 @@ warnings.warn( "The `nvtabular.inference` module is being replaced by the Merlin Systems library. " "Support for importing from `nvtabular.inference` is deprecated, " - "and will be removed in a future version. Please consider using the " - "models and layers from Merlin Systems instead.", + "and will be removed in a future version. Please consider using " + "operators and ensembles from Merlin Systems instead.", DeprecationWarning, )