We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What are your best practices for dealing with NaN's in the output.
I've decided to use masking in the reduce mean for finite values only:
tf.reduce_mean(tf.boolean_mask(out, tf.is_finite(out))
I'm thinking of putting in a regularizer or two, and maybe setting max values for a and b?
For instance, if you make your time variable right, the mean of the Weibull should never be greater than 1 I suppose.
Anything else?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What are your best practices for dealing with NaN's in the output.
I've decided to use masking in the reduce mean for finite values only:
tf.reduce_mean(tf.boolean_mask(out, tf.is_finite(out))
I'm thinking of putting in a regularizer or two, and maybe setting max values for a and b?
For instance, if you make your time variable right, the mean of the Weibull should never be greater than 1 I suppose.
Anything else?
The text was updated successfully, but these errors were encountered: