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 error is referring to the .cut line, which I had previously patched to include the duplicates='drop' bit. But the current error isn't related to that, but complaining about the encoder. Hmmm, nothing looks odd in the data about that column. Let's open up pdb and take a look...
Well now! I suppose I'll concede that's technically not monotonically increasing!
I appended a .round(4) to the two .quantile lines of encoders/numeric (lines 12 and 15), which worked for this test case. This is certainly not an adequate general solution, however, as e.g. that'll break data on data that needs precision at the 5th decimal place...
The text was updated successfully, but these errors were encountered:
I almost feel bad for reporting this one.
Using the yacht hydrodynamics UIC dataset, I got this error:
Hmmm, odd. Let's take a look at pipeline.py...
The error is referring to the .cut line, which I had previously patched to include the
duplicates='drop'
bit. But the current error isn't related to that, but complaining about the encoder. Hmmm, nothing looks odd in the data about that column. Let's open up pdb and take a look...facepalm
Well now! I suppose I'll concede that's technically not monotonically increasing!
I appended a
.round(4)
to the two.quantile
lines ofencoders/numeric
(lines 12 and 15), which worked for this test case. This is certainly not an adequate general solution, however, as e.g. that'll break data on data that needs precision at the 5th decimal place...The text was updated successfully, but these errors were encountered: