ShapeOut 2.11.0
When using a box filter to only get events with the same "most probable ml class", let's say, ml_class = 4, I run into the following problem:
The box filter for that feature only allows integer values, and when I filter with min=4 and max=4, the filter does not work at all, but if I filter with min=3 and max=4, both classes, 3 and 4, are selected, although I only want ml_class = 4.
The current workaround is to use two filters, one with min=3 and max=4 and the other one with min=4 and max=5.
I think it would be nice if the box filter would work by setting min and max value of the filter to the same value (4 in my example).