How to display progress of scipy.optimize function?

后端 未结 7 641
醉酒成梦
醉酒成梦 2020-12-01 05:02

I use scipy.optimize to minimize a function of 12 arguments.

I started the optimization a while ago and still waiting for results.

Is there a wa

相关标签:
7条回答
  • 2020-12-01 05:49

    Try using:

    options={'disp': True} 
    

    to force scipy.optimize.minimize to print intermediate results.

    0 讨论(0)
提交回复
热议问题