We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LimitTransform
Issue by Mr-Geekman Monday Jul 17, 2023 at 12:29 GMT Originally opened as tinkoff-ai#1316
Create a transform that limits values of some feature between the borders.
Create LimitTransform.
Parameters:
in_column: column to make transformation on;
in_column
lower_bound: lower bound for the value of the column; -infty by default;
lower_bound
upper_bound: upper bound for the value of the column; +infty by default;
upper_bound
If there is value out of limit the exception should be raised.
NaNs should be ignored.
Reference: Ensure time series forecasts stay within limits.
To discuss:
inplace
What should be checked:
Don't forget to add inference tests into tests/test_transforms/test_inference/.
tests/test_transforms/test_inference/
No response
The text was updated successfully, but these errors were encountered:
egoriyaa
Successfully merging a pull request may close this issue.
Monday Jul 17, 2023 at 12:29 GMT
Originally opened as tinkoff-ai#1316
🚀 Feature Request
Create a transform that limits values of some feature between the borders.
Proposal
Create
LimitTransform
.Parameters:
in_column
: column to make transformation on;lower_bound
: lower bound for the value of the column; -infty by default;upper_bound
: upper bound for the value of the column; +infty by default;If there is value out of limit the exception should be raised.
NaNs should be ignored.
Reference: Ensure time series forecasts stay within limits.
To discuss:
inplace
parameter for working in non-inplace mode?Test cases
What should be checked:
Don't forget to add inference tests into
tests/test_transforms/test_inference/
.Additional context
No response
The text was updated successfully, but these errors were encountered: