You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we handle nullable types for the confusion_matrix and roc_curve with the _convert_ww_series_to_np_array util, which works around the inability of Series.to_numpy to recognize the pandas nullable dtypes, resulting in numpy data with the object dtype, which causes errors down the line.
We should move _convert_ww_series_to_np_array to the nullable type handling utils file and rename it to make it celar it has to do with nullable type handling.
The text was updated successfully, but these errors were encountered:
Currently, we handle nullable types for the
confusion_matrix
androc_curve
with the_convert_ww_series_to_np_array
util, which works around the inability ofSeries.to_numpy
to recognize the pandas nullable dtypes, resulting in numpy data with theobject
dtype, which causes errors down the line.We should move
_convert_ww_series_to_np_array
to the nullable type handling utils file and rename it to make it celar it has to do with nullable type handling.The text was updated successfully, but these errors were encountered: