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
I notice that in gaussian_network.py, you use min_log_var in GaussianNetwork class to ensure the variance of z distribution not too low. However, not all subclass use this variable(e.g. GaussianBidirectionalNetwork). I am wondering why we need this variable and how this variable effect training?
Thank you :)
The text was updated successfully, but these errors were encountered:
The min_log_var is more of a problem for the policy (which ues GaussianNetwork) than for the decoder which uses GaussianBidirectionalNetwork. This ensures the policy gradient when training the policy does not explode.
I notice that in
gaussian_network.py
, you usemin_log_var
inGaussianNetwork
class to ensure the variance of z distribution not too low. However, not all subclass use this variable(e.g. GaussianBidirectionalNetwork). I am wondering why we need this variable and how this variable effect training?Thank you :)
The text was updated successfully, but these errors were encountered: