2

I want to use optimization functions of Mallet. I started with the example code of Mallet Optimization and here is the result:

0.33083508103423664, -0.5006075619899537
Exiting L-BFGS on termination #1:
value difference below tolerance (oldValue: 19.33277696022755 newValue: 19.333313133013398

The result is close to 0.33 and -0.5, as expected. But, what does "Exiting L-BFGS on termination #1" means?

Sara Fahim
  • 177
  • 2
  • 10

1 Answers1

2

Obviously, If you look at here and here, there is an if statement that checks weather the absolute value of subtracting the newValue from oldValue is below the tolerance or not.

Amin Etesamian
  • 3,363
  • 5
  • 27
  • 50