I was reading Modern Optimization with R (Use R!) and wondering if a book like this exists in Python too? To be precise something that covers stochastic gradient descent and other advanced optimization techniques.
5 Answers
There is a tutorial Modern Optimization in Python and a corresponding video Modern Optimization in Python | SciPy 2017 Tutoria. Although they are not books, I think they may be helpful to you.
- 1,831
- 11
- 23
- 34
- 41
- 1
You should be able to translate code written in one language -- even pseudo-code -- to another, so I see no reason to avoid books for R. If you want one specifically for python, there's Machine Learning in Action by Peter Harrington.
One of scikit-learn's core committers is a releasing a book in October: Introduction to Machine Learning with Python: A Guide for Data Scientists.
- 10,541
- 1
- 31
- 39
Try the ND Pyomo Cookbook: https://github.com/jckantor/ND-Pyomo-Cookbook. That is a collection of notebooks showing how to use Pyomo to solve modeling and optimization problems.
- 131
- 3
I found this question useful for me. Nevertheless, I agree with Erme namely you should be able to translate code written in one language to another.
Recently I've found this book and strongly recommend Algorithms for Optimization.
Algorithms are shown in Julia Code, but the syntax of this language is very simple and in many cases similar to Python.
Here can be found a short review of the mentioned book:
- 111
- 3