From 9b186ee90f2edfed93b14dda804cc6adae4a29c1 Mon Sep 17 00:00:00 2001 From: Karl Higley Date: Mon, 27 Feb 2023 16:12:00 -0500 Subject: [PATCH] Replace `nvtabular` inference back-end with `python` (#1771) The NVTabular custom back-end is no longer maintained and shouldn't be used. The Triton Python back-end is now sufficient for what we need, so we can switch over to that. --- nvtabular/inference/triton/ensemble.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvtabular/inference/triton/ensemble.py b/nvtabular/inference/triton/ensemble.py index b3d5470deb2..e11a1dff29e 100644 --- a/nvtabular/inference/triton/ensemble.py +++ b/nvtabular/inference/triton/ensemble.py @@ -36,7 +36,7 @@ def export_tensorflow_ensemble( label_columns=None, sparse_max=None, version=1, - nvtabular_backend="nvtabular", + nvtabular_backend="python", cats=None, conts=None, ):