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
The current parsing of fit and produce args requires all the arguments to always exist inside the pipeline context.
Two new keywords should be added inside the arg specification dictionary to make this behavior more flexible:
default
required
The text was updated successfully, but these errors were encountered:
csala
Successfully merging a pull request may close this issue.
The current parsing of fit and produce args requires all the arguments to always exist inside the pipeline context.
Two new keywords should be added inside the arg specification dictionary to make this behavior more flexible:
default
: a default value to pass to the method if the variable is not found in the pipeline context.required
: if set to False and the variable is not found in the pipeline context, do not pass it to the method. This will be True by default.The text was updated successfully, but these errors were encountered: