Skip to content

Commit

Permalink
Convert index to array so that assignment works later on (#1836)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverholworthy committed Jun 7, 2023
1 parent 69fbd57 commit f1165d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nvtabular/ops/categorify.py
Original file line number Diff line number Diff line change
Expand Up @@ -1693,7 +1693,7 @@ def _encode(
expr = df[selection_l.names[0]].isna()
for _name in selection_l.names[1:]:
expr = expr & df[_name].isna()
nulls = df[expr].index
nulls = df[expr].index.values

if use_collection or not search_sorted:
if list_col:
Expand Down

0 comments on commit f1165d8

Please sign in to comment.