You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There might be a situation, when the user firstly defined a function that transforms the image as def image(image, some_other_arg, _another_arg), and after that unintentionally defined transform for mask as mask = image.
Since it's not common that some fields are duplicated, it is reasonable to show a warning that mask transform should be defined as mask = positional(image)
The text was updated successfully, but these errors were encountered:
There might be a situation, when the user firstly defined a function that transforms the image as
def image(image, some_other_arg, _another_arg)
, and after that unintentionally defined transform for mask asmask = image
.Since it's not common that some fields are duplicated, it is reasonable to show a warning that mask transform should be defined as
mask = positional(image)
The text was updated successfully, but these errors were encountered: