/
Lecture 16 Lecture 16

Lecture 16 - PowerPoint Presentation

sherrill-nordquist
sherrill-nordquist . @sherrill-nordquist
Follow
371 views
Uploaded On 2016-09-08

Lecture 16 - PPT Presentation

Nonlinear Problems Simulated Annealing and Bootstrap Confidence Intervals Syllabus Lecture 01 Describing Inverse Problems Lecture 02 Probability and Measurement Error Part 1 Lecture 03 Probability and Measurement Error Part 2 ID: 462882

pm1 lecture m1bins dm1bins lecture pm1 dm1bins m1bins m1hmin nbins m1save m1hist random error find problems m1hmax confidence data

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "Lecture 16" is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

Lecture 16

Nonlinear Problems:

Simulated Annealing

and Bootstrap Confidence Intervals Slide2

Syllabus

Lecture 01 Describing Inverse Problems

Lecture 02 Probability and Measurement Error, Part 1

Lecture 03 Probability and Measurement Error, Part 2

Lecture 04 The L

2

Norm and Simple Least Squares

Lecture 05 A Priori Information and Weighted Least Squared

Lecture 06 Resolution and Generalized Inverses

Lecture 07 Backus-Gilbert Inverse and the Trade Off of Resolution and Variance

Lecture 08 The Principle of Maximum Likelihood

Lecture 09 Inexact Theories

Lecture 10

Nonuniqueness

and Localized Averages

Lecture 11 Vector Spaces and Singular Value Decomposition

Lecture 12 Equality and Inequality Constraints

Lecture 13 L

1

, L

Norm Problems and Linear Programming

Lecture 14 Nonlinear Problems: Grid and Monte Carlo Searches

Lecture 15 Nonlinear Problems: Newton’s Method

Lecture 16 Nonlinear Problems: Simulated Annealing and Bootstrap Confidence Intervals

Lecture 17 Factor Analysis

Lecture 18

Varimax

Factors,

Empircal

Orthogonal Functions

Lecture 19 Backus-Gilbert Theory for Continuous Problems; Radon’s Problem

Lecture 20 Linear Operators and Their

Adjoints

Lecture 21

Fr

é

chet

Derivatives

Lecture 22 Exemplary Inverse Problems, incl. Filter Design

Lecture 23 Exemplary Inverse Problems, incl. Earthquake Location

Lecture 24 Exemplary Inverse Problems, incl.

Vibrational

ProblemsSlide3

Purpose of the Lecture

Introduce Simulated Annealing

Introduce the Bootstrap Method

for computing Confidence IntervalsSlide4

Part 1

Simulated AnnealingSlide5

Monte Carlo Method

completely undirected

Newton’s Method

completely directedSlide6

Monte Carlo Method

completely undirected

Newton’s Method

completely directed

slow, but foolproof

fast, but can

fall into local minimumSlide7

compromise

partially-directed random walkSlide8

m

(p)

E

high

E

medium

E

lowSlide9

m

(p)

E

high

E

medium

E

low

p

(

m

*

|

m

(p)

)Slide10

m

(p)

E

high

E

medium

E

low

m

*Slide11

acceptance of

m

* as

m

(p+1)

always accept in error is smaller

accept with probability

where

T

is a parameter

if error is biggerSlide12

large

T

1

always

accept

m

*

(undirected

random walk)

ignores the error completelySlide13

small

T

0

accept

m

*

only when error is smaller

(directed

random walk)

strictly decreases the errorSlide14

intermediate

T

most iterations

decrease the error

but occasionally allow an

m

*

that increases it Slide15

m

(p)

E

high

E

medium

E

low

large

T

undirected

random walkSlide16

m

(p)

E

high

E

medium

E

low

small

T

directed

random walkSlide17

strategy

start off with large T

slowly decrease T during iterations

undirected

similar to Monte Carlo method

(except more “local”)

directed

similar to Newton’s method

(except

precise gradient direction not used)Slide18

strategy

start off with large T

slowly decrease T during iterations

claim is that this strategy helps

achieve the global minimum

more random

more directedSlide19

analogous to annealing of metals

high temperatures

atoms randomly moving

about due to thermal motions

as temperature decreases

atoms slowly find themselves in a

minimum energy configuration

orderly arrangement of a “crystal”

www.sti-laser.com/technology/heat_treatments.htmlSlide20

analogous to annealing of metals

high temperatures

atoms randomly moving

about due to thermal motions

as temperature decreases

atoms slowly find themselves in a

minimum energy configuration

orderly arrangement of a “crystal”

hence

“simulated annealing”

and

T

called “temperature”Slide21

this is just

Metroplois

-Hastings

(way of producing realizations of a random variable)

applied to the

p.d.f

.Slide22

this is just

Metroplois

-Hastings

(way of producing realizations of a random variable)

applied to the

p.d.f

.

sampling a distribution that starts out wide and blurry

but

sharpens up as

T

is decreasesSlide23

(A)

(B)

(C)Slide24

for k = [1:Niter]

T = 0.1 * Eg0 * ((Niter-k+1)/Niter)^2;

ma(1) = random('

Normal',mg

(1),Dm);

ma(2) = random('

Normal',mg(2),Dm); da

= sin(w0*ma(1)*x) + ma(1)*ma(2); Ea = (dobs-da)'*(dobs-da); if( Ea <

Eg

)

mg=ma;

Eg

=Ea;

p1his(k+1)=1; else

p1 = exp( -(Ea-Eg)/T ); p2 = random('unif',0,1); if( p1 > p2 ) mg=ma; Eg=Ea;

end end endSlide25

Part 2

Bootstrap MethodSlide26

theory of confidence intervals

error is the data

result in

errors in the estimated model parameters

p(

d

)

d

d

obs

p(

m

)

m

m

est

m(

d

)Slide27

theory of confidence intervals

error is the data

result in

errors in the estimated model parameters

p(

d

)

d

p(

m

)

m

95% confidence

m(

d

)

2

½

%

2

½

%

2

½

%

2

½

%

95% confidenceSlide28

Gaussian linear theory

d

=

Gm

m

=

G

-

gdstandard error propagation

[

cov

m

]=

G

-g

[cov d] G-gT

univariate Gaussian distribution has95% of error within two σ

of its meanSlide29

What to do with

Gaussian nonlinear theory?

One possibility

linearize

theory and use standard error propagation

d

=

g

(m)

m-m

(p)

G

(p)

g [d- g(m(p)

) ]

[cov m

]≈G(p)

-g

[

cov

d

]

G

(p)

-gSlide30

disadvantages

unknown accuracy

and

need to compute gradient of theory

G

(p)

G

(p)

not computed when using some solution methodsSlide31

alternative

confidence intervals with

repeat datasets

do the whole

experiment many times

use results of each experiment to make compute

m

est

create histograms from many

m

est

’s

derive empirical 95% confidence intervals

from histogramsSlide32

Bootstrap Method

create approximate repeat datasets

by randomly

resampling

(with duplications)

the one existing data setSlide33

example of

resampling

1.4

2.1

3.8

3.1

1.5

1.7

123

4

5

6

3

1

3

2

51

3.81.43.8

2.11.51.4

1

2

3

4

5

6

original

data set

random integers in range 1-6

resampled

data setSlide34

example of

resampling

1.4

2.1

3.8

3.1

1.5

1.7

123

4

5

6

3

1

3

2

51

3.81.43.8

2.11.51.4

1

2

3

4

5

6

original

data set

random integers in range 1-6

new

data setSlide35

example of

resampling

1.4

2.1

3.8

3.1

1.5

1.7

123

4

5

6

3

1

3

2

51

3.81.43.8

2.11.51.4

1

2

3

4

5

6

original

data set

random integers in range 1-6

resampled

data set

note repeatsSlide36

rowindex

=

unidrnd

(N,N,1);

xresampled

= x(

rowindex

);dresampled = dobs( rowindex

);Slide37

p(d)

p’(d)

sampling

duplication

mixing

interpretation of

resamplingSlide38

(A)

(B)

m

1

m

2

m

1

m

2

p(m

2

)

p(m

1

)

(C)Slide39

Nbins

=50;

m1hmin=min(m1save);

m1hmax=max(m1save);

Dm1bins = (m1hmax-m1hmin)/(Nbins-1);

m1bins=m1hmin+Dm1bins*[0:Nbins-1]';

m1hist =

hist(m1save,m1bins);pm1 = m1hist/(Dm1bins*sum(m1hist));Pm1 = Dm1bins*

cumsum(pm1);m1low=m1bins(find(Pm1>0.025,1));m1high=m1bins(find(Pm1>0.975,1));Slide40

Nbins

=50;

m1hmin=min(m1save);

m1hmax=max(m1save);

Dm1bins = (m1hmax-m1hmin)/(Nbins-1);

m1bins=m1hmin+Dm1bins*[0:Nbins-1]';

m1hist =

hist(m1save,m1bins);pm1 = m1hist/(Dm1bins*sum(m1hist));Pm1 = Dm1bins*

cumsum(pm1);m1low=m1bins(find(Pm1>0.025,1));m1high=m1bins(find(Pm1>0.975,1));

histogramSlide41

Nbins

=50;

m1hmin=min(m1save);

m1hmax=max(m1save);

Dm1bins = (m1hmax-m1hmin)/(Nbins-1);

m1bins=m1hmin+Dm1bins*[0:Nbins-1]';

m1hist =

hist(m1save,m1bins);pm1 = m1hist/(Dm1bins*sum(m1hist));Pm1 = Dm1bins*

cumsum(pm1);m1low=m1bins(find(Pm1>0.025,1));m1high=m1bins(find(Pm1>0.975,1));

empirical

p.d.f

.Slide42

Nbins

=50;

m1hmin=min(m1save);

m1hmax=max(m1save);

Dm1bins = (m1hmax-m1hmin)/(Nbins-1);

m1bins=m1hmin+Dm1bins*[0:Nbins-1]';

m1hist =

hist(m1save,m1bins);pm1 = m1hist/(Dm1bins*sum(m1hist));Pm1 = Dm1bins*

cumsum(pm1);m1low=m1bins(find(Pm1>0.025,1));m1high=m1bins(find(Pm1>0.975,1));

empirical

c.d.f

.Slide43

Nbins

=50;

m1hmin=min(m1save);

m1hmax=max(m1save);

Dm1bins = (m1hmax-m1hmin)/(Nbins-1);

m1bins=m1hmin+Dm1bins*[0:Nbins-1]';

m1hist =

hist(m1save,m1bins);pm1 = m1hist/(Dm1bins*sum(m1hist));Pm1 = Dm1bins*

cumsum(pm1);m1low=m1bins(find(Pm1>0.025,1));m1high=m1bins(find(Pm1>0.975,1));

95% confidence

bounds