Currently ParamSpec uses a form that follows the convention of sklearn (e.g., using __ to represent a path down to an underlying component). One example here:
We may want to consider change __ to . form if this becomes too verbose for the user. If we decide we need to do this, we also need to deserialize the . to the __ form since sklearn only recognize the original form.
Description
Currently ParamSpec uses a form that follows the convention of sklearn (e.g., using
__
to represent a path down to an underlying component). One example here:We may want to consider change
__
to.
form if this becomes too verbose for the user. If we decide we need to do this, we also need to deserialize the.
to the__
form since sklearn only recognize the original form.