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
We can enforce this constraint by parameterizing eta, for example:
eta
eta = tanh(xi)
where now xi is unbounded.
xi
We can use something faster than tanh. Here are some examples:
tanh
This suggests that the faster alternative is:
eta = xi / (1 + abs(xi))
The text was updated successfully, but these errors were encountered:
We don't have to parameterize eta. Rather, we can use a different parameter. So, instead of using
which is required to be between -1 and 1, we can use:
which is unbounded.
The relation between the two is:
Sorry, something went wrong.
Closed in e774670
No branches or pull requests
We can enforce this constraint by parameterizing
eta
, for example:where now
xi
is unbounded.We can use something faster than
tanh
. Here are some examples:This suggests that the faster alternative is:
The text was updated successfully, but these errors were encountered: