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
Which leads to double initialization of the parameters for each instance, if the parameters are chosen randomly, it may rise conflicts of using the two different values of the parameters in the same appliance of the transform, possible inheritance conflicts between other transform classes that come from AloTransform.
The text was updated successfully, but these errors were encountered:
In AloTransform
init
function, we initialize the parameters by calling thesample_params()
function :aloception-oss/alodataset/transforms.py
Line 35 in 1e8409e
However it's already called in the
_call_()
function, for each scenario case of the input frames structure:aloception-oss/alodataset/transforms.py
Line 58 in 1e8409e
Which leads to double initialization of the parameters for each instance, if the parameters are chosen randomly, it may rise conflicts of using the two different values of the parameters in the same appliance of the transform, possible inheritance conflicts between other transform classes that come from AloTransform.
The text was updated successfully, but these errors were encountered: