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
A question about your TGAN code. We need to avoid any randomness for reproducibility purposes. We were wondering if there is a way to avoid this? We have tried to set the random seed, but it seems like there is randomness involved somewhere that we can not control over. We will appreciate your response.
The text was updated successfully, but these errors were encountered:
TGAN fits Gaussian Mixture models (GMM) on all continuous columns and transforms those columns. We use the GMM implementation in sklearn. To eliminate all randomness, you can implement the save and load function in MultiModalNumberTransformer to fix the transformation.
Hi, we tried to fix the random seed here in GaussianMixtureModel but still there's randomness. Also, could you explain more about how to "implement the save and load function in MultiModalNumberTransformer to fix the transformation"? Thanks for your time.
A question about your TGAN code. We need to avoid any randomness for reproducibility purposes. We were wondering if there is a way to avoid this? We have tried to set the random seed, but it seems like there is randomness involved somewhere that we can not control over. We will appreciate your response.
The text was updated successfully, but these errors were encountered: