-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Convert cuDF to Triton Object does not work with null values #78
Comments
I don't think this is expected to work, since I don't think Triton supports nulls in tensors. Could you post the full stack trace though, so we can double-check where the issue is surfacing and what (if anything) we can do about it? |
I dont have the example available, right now. It happens in this line:
@EvenOldridge FYI |
Okay, if this is a thing we were already doing that stopped working, could you fill me in on what example this breaks? I understand that there's an issue here, but I don't yet have much to go on for reproducing or troubleshooting it. |
retiring this bug. PR is merged. |
@viswa-nvidia why do you retire this bug? The PR is a short-term workaround. I run into the same bug, right now. |
@bschifferer Could you provide more information on this issue? Like a minimal repro and a full stack trace? (It's been...116 days since I asked for more info to help me troubleshoot, so it doesn't seem unreasonable to close this issue as stale at this point.) |
@karlhigley I am sorry, I didnt know that this was missing.
I think this is more a high-level questions - do we want to support FillNa / FillMedian ops in NVTabular? Because we are not able to send data with NA values to Triton |
@viswa-nvidia - Yes, this is still relevant |
Bug description
If I use
convert_df_to_triton_input
with a dataframe containing Null values, then I get an error:ValueError: Column must have no nulls.
We could replace
.values_host
with.to_pandas().values
. However, that will change the nan value to-2147483648
Expected behavior
I can convert DataFrames with Nulls
The text was updated successfully, but these errors were encountered: