Reputation: 2160
I'm looking for something like the l_bfgs_b or tnc methods that exist in scipy.optimize. Has anyone seen implementations of these?
Upvotes: 2
Views: 2773
Reputation: 5808
You might have a look at tf.contrib.opt.ScipyOptimizerInterface. This lets you use Scipy optimizers on TensorFlow models directly.
Upvotes: 6