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
When using threading=True, the random state of any Randomizable transformation is only updated within its copy, thus the original random state will be untouched generating the same samples over and over.
I already saw that somewhere in the docs there is a mentioning of "limited randomness" for threading (even though I find that a rather optimistic description). Are there plans how to tackle this issue? Or won't it be supported?
The text was updated successfully, but these errors were encountered:
I made a proposal in PR #7925 to fix this issue. Not sure whether it might have some other unwanted implications, so it would be nice to have a review from an experienced contributor 🙏
MONAI/monai/transforms/compose.py
Line 110 in ac86ed4
When using
threading=True
, the random state of any Randomizable transformation is only updated within its copy, thus the original random state will be untouched generating the same samples over and over.I already saw that somewhere in the docs there is a mentioning of "limited randomness" for threading (even though I find that a rather optimistic description). Are there plans how to tackle this issue? Or won't it be supported?
The text was updated successfully, but these errors were encountered: