From e972d490f0796fafbf225c222f3e84933418e081 Mon Sep 17 00:00:00 2001 From: Karl Higley Date: Wed, 22 Feb 2023 10:14:38 -0500 Subject: [PATCH] Replace `nvtabular` inference back-end with `python` 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, ):