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
The failure is due to density_ratio being a 2d multivariate estimator, but a 1d linear space is passed as an argument to the compute_density_ratio method. Unlike numpy, numba places a strict constraint on operand dimensions with the guvectorizesignature argument; numpy simply broadcasts.
The text was updated successfully, but these errors were encountered:
As of 5757f36, when
compute_kernel_Gaussian
function is executed withnumba
(bothcpu
andparallel
as theset_compute_kernel_target
target
argument), thetests.test_RuLSIF::test_alphadensratio_2d
test fails with the following error:The failure is due to
density_ratio
being a 2d multivariate estimator, but a 1d linear space is passed as an argument to thecompute_density_ratio
method. Unlikenumpy
,numba
places a strict constraint on operand dimensions with theguvectorize
signature
argument;numpy
simply broadcasts.The text was updated successfully, but these errors were encountered: