-
I have two likely naïve questions about how the new tag system works with transformers like
We are trying to follow best practices in developing our own transformers and would love any guidance the community can provide. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
The |
Beta Was this translation helpful? Give feedback.
-
I think it is for a backward compatibility reason with the older tags as well. |
Beta Was this translation helpful? Give feedback.
Indeed.
By default,
BaseEstimator
define:So it is again a backward compatibility things. We could have chosen to have
target_tags=None
but because in previous version, the tags existed,required=False
overwrite the meaning of all other tags withintarget_tags
.