Physics 212, 2019: Lecture 14

From Ilya Nemenman: Theoretical Biophysics @ Emory
Revision as of 00:08, 4 March 2019 by Ilya (talk | contribs) (Created page with "{{PHYS212-2019}} ''Follow Module 3 Python scripts for illustration of these notes.'' Typically when we build a model, parameters of the model are not...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Emory Logo

Back to the main Teaching page.

Back to Physics 212, 2019: Computational Modeling.

Follow Module 3 Python scripts for illustration of these notes.

Typically when we build a model, parameters of the model are not known a priori. We may know that bacteria grow according to a simple exponential growth with carrying capacity, but neither the maximum growth rate, nor the capacity itself are usually known. Instead, we need to fit these from data. That is, we need to find the parameter values that create the dynamics such that the graphs of solutions of the dynamics match the measured experimental data. Sometimes it may be possible to get the predictions and the data to coincide completely, but this is rare. Indeed, the model itself may not be totally accurate, or, what is even more common, experimental data may come with measurement noise. Thus we only try to get the modeling curves pass as close as possible to experimental data, but we cannot require that they match perfectly.

Such fitting of models from data is an example of a huge (and still largely unsolved) field of computational sciences -- namely, the field of optimization. The main problem within the field is typically formulated as follows. A loss function is given, which depends on a certain set of parameters . Given maybe some addition properties of the loss function and the expected range of the parameters that are given to us, we need to find the minimum of the loss function and the the values of the arguments (parameters) that minimize it . Note that while it is traditional to talk about minimizing the loss function, minimization of is equivalent to maximization of ; so that the field is called more generally as optimization and not as minimization.

While optimization is a common thread in many computational science problems, specifically those involved in fitting models to data, optimization is also all around us. In physics, the state with maximum entropy is the equilibrium state of matter; further, much of physics can be formulated as the nature finding systems trajectories that optimize the quantity known as action. Focusing on neuroscience, the trajectory that your arm will take in a reaching task can be predicted through optimization of time and applied force. And life itself cannot be understood without focusing on optimization of fitness -- the number of offsprings that reach maturity. In societies, from decisions made to individuals to policy choices, we keep on trying to optimize expected rates of return on our investments of time, energy, money. It's not surprising maybe that, since optimization is so broad and can account for so many natural and social phenomena, the most general optimization problem is far from solved.

In this class we, will provide just a simple survey of various useful optimization methods, specifically as they apply to fitting models to data. But there's much more to learn. You may want to read up on optimization in a canonical textbook Numerical Recipes (http://apps.nrbook.com/c/index.html -- look at the chapter on Optimization). However, don't overdo it -- the text book is aimed at beginning graduate students, and so goes into more details than we will cover in class.

Blind fits: Empirical statistical models

The simplest fitting procedure that many of you are familiar with is linear regression, which you certainly have done in analysis of laboratory science classes. Here the model of data is not dynamic, but rather static. We are interested, in the simplest case, in the relation between two variables and . The simplest relation that one can postulate is that the variables are linearly dependent, , with an unknown coefficient . One measures a set of pairs , , and the goal is to find that produces the best fit line, the closest line to the observed points.

What do we mean by "the closest"? The distance between the observation, , and the fit line, is . While other choices are possible, a common choice is to say that the sum of squares (S.O.S.) of distances between the observations and the fit line, , should be minimized over the parameter . We do this by taking the derivative of with respect to , and setting the derivative to zero: . This can be transformed to give us the optimal parameter value .

This example is the simplest case of what is known as linear regression -- dividing a coefficient that relates the dependent variable (also known as the regressand or the response variable), and the independent variable (also known as a regressor, input, or predictor variable). The linear regression can be extended to the multivariate regression case, when there are more than one predictor variable. This involves techniques from multivariate calculus and linear algebra, and we won't derive the method here. A special case of such multivariate linear regression, which we often encounter in practice, is . Note that even though is a nonlinear function of , it is a linear function of , and thus the optimization can be solved by linear regression methods. Here act as four different predictors (with the predictor corresponding to being the same, 1, for every data point). In general, one should remember that linear regression may regress based on a nonlinear predictor!

Regression is the simplest, linear example of optimization. We will start with it, and then move on to more complicated examples. In Python, linear regression is implemented with numpy.linalg.lstsq function.

Consistency checks when doing fits

Your turn
Look up the predicted maximum temperature for the next ten days online and build a linear regression model of what the temperature will be on day 11 using zeroth order, linear, quadratic, and cubic polynomial model.


Scripts for this lecture

Module 3 -- the scripts I showed in class.