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
Replace
both_converged <- all( (max(m1$gradients) < 0.005), (max(m2$gradients) < 0.005), !m1$bad_eig, !m2$bad_eig, m1$sd_report$pdHess, m2$sd_report$pdHess
(max(m$gradients) < 0.1 && !m$bad_eig && m$sd_report$pdHess
with
x <- sanity(model_name) all(unlist(x))
note that sanity() returns FALSE with NULL or "try-error" to help out
FALSE
NULL
"try-error"
The text was updated successfully, but these errors were encountered:
This is lower priority if we just want to leave it as is for now
Sorry, something went wrong.
jdunic
No branches or pull requests
Replace
Replace
with
note that sanity() returns
FALSE
withNULL
or"try-error"
to help outThe text was updated successfully, but these errors were encountered: