mdornfe1
mdornfe1

Reputation: 2160

Implementation of constrained optimization methods in TensorFlow?

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

Answers (1)

Allen Lavoie
Allen Lavoie

Reputation: 5808

You might have a look at tf.contrib.opt.ScipyOptimizerInterface. This lets you use Scipy optimizers on TensorFlow models directly.

Upvotes: 6

Related Questions