Python Optimization Example Snowball Rolling with Scipy Minimize

preview_player
Показать описание
How big does a snowball need to be to knock down a tree after rolling for 30 seconds? We answer this question using optimization in Python. Tools used: Python, numpy, scipy odeint, scipy minimize.

This video is part of an introductory series on optimization.

Code available on GitHub:
Рекомендации по теме
Комментарии
Автор

This is a really well done video. Dialogue is clear and timing is just right. Readers can pause to catch up if necessary. It game me a good overview of how optimisation works in Python.

chrisjamesfell
Автор

which gradient based method is used here for solving the problem?

yashbhavsar
Автор

why in snow_dynamics p includes K0 (K0, C-d, g...=p), but in objective, there is no K0 in p but have m0 instead of K0 (p = m0, C_d, g...) ??

jingyiwang