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
breeze/math/src/main/scala/breeze/optimize/StrongWolfe.scala
Line 116 in 1dbf3f8
val t = if (low.t > hi.t) interp(hi, low) else interp(low, hi) // Evaluate objective at t, and build bracket val c = phi(t) //logger.debug("ZOOM:\n c: " + c + " \n l: " + low + " \nr: " + hi) logger.info( "Line search t: " + t + " fval: " + c.fval + " rhs: " + (fval + c1 * c.t * dd) + " cdd: " + c.dd) if (t.isNaN) throw new FirstOrderException(s"Line search zoom failed")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
breeze/math/src/main/scala/breeze/optimize/StrongWolfe.scala
Line 116 in 1dbf3f8
The throw can happen as soon as we find that t is Nan.
The text was updated successfully, but these errors were encountered: