RectifyFilter#

class myoverse.datasets.filters.temporal.RectifyFilter(input_is_chunked, is_output=False, name=None, run_checks=True)[source]#

Filter that rectifies the input array.

Parameters:
  • input_is_chunked (bool) – Whether the input is chunked or not.

  • is_output (bool) – Whether the filter is an output filter. If True, the resulting signal will be outputted by and dataset pipeline.

  • name (str | None) – Name of the filter, by default None.

  • run_checks (bool) –

    Whether to run the checks when filtering. By default, True. If False can potentially speed up performance.

    Warning

    If False, the user is responsible for ensuring that the input array is valid.

Methods

__init__(input_is_chunked[, is_output, ...])