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
This is for those are trying this vae-clustering repo which depends the tensorbayes library. I got very poor performance because of the bad initialization scheme in file: tensorbayes/layers/simple.py line 31.
Pls replace variance_scaling_initializer with xavier_initializier. Also, don't forget to import it: from tensorflow.contrib.layers import xavier_initializer
After this, the performance is boosted.
Hope this help later followers~
The text was updated successfully, but these errors were encountered:
This is for those are trying this vae-clustering repo which depends the tensorbayes library. I got very poor performance because of the bad initialization scheme in file: tensorbayes/layers/simple.py line 31.
Pls replace variance_scaling_initializer with xavier_initializier. Also, don't forget to import it: from tensorflow.contrib.layers import xavier_initializer
After this, the performance is boosted.
Hope this help later followers~
The text was updated successfully, but these errors were encountered: