pfjax
Modules:
| Name | Description |
|---|---|
experimental |
|
loglik_full |
|
mcmc |
MCMC algorithms for state space models. |
models |
|
mvn_bridge |
Multivariate normal bridge proposals. |
neg_loglik |
|
particle_filter |
Particle filters which approximate the score and fisher information. |
particle_resamplers |
Particle resamplers. |
particle_smooth |
|
sde |
Generic methods for SDEs. |
simulate |
|
test |
|
utils |
Utility functions. |
Classes:
| Name | Description |
|---|---|
BaseModel |
Base model for particle filters. |
Functions:
| Name | Description |
|---|---|
particle_filter_rb |
Rao-Blackwellized particle filter. |
BaseModel
Bases: object
Base model for particle filters.
This class sets up a PF model from small set of methods:
-
The derived class should provide methods
state_lpdf(),meas_lpdf(),state_sample()andmeas_sample()in order calculate the complete data likelihoodpfjax.loglik_full()and simulate data from the model viapfjax.simulate(). -
To use the "basic" particle filter
pfjax.particle_filter(), the derived class must provide methodspf_init()andpf_step(). -
To use the Rao-Blackwellized particle filter
pfjax.particle_filter_rb(), the derived class must provide methodspf_init(),step_sample(), andstep_lpdf(). -
If
pf_init()is missing, the base class will automatically construct it fromprior_lpdf(),init_sample(), andinit_lpdf(). -
if
pf_step()is missing, the base class will automatically construct it fromstate_lpdf(),meas_lpdf(),step_sample(), andstep_lpdf(). -
If in either of the above
step_sample()andstep_lpdf()are missing, the base class assumes a bootstrap particle filter and setsstep_sample = state_sampleandstep_lpdf = state_lpdf. -
If in either of the above
init_sample()andinit_lpdf()are missing, the base calss setsinit_sample = prior_sampleandinit_lpdf = prior_lpdf.
Notes:
-
pf_step()andpf_init()could be computed more efficiently for bootstrap sampling. Perhaps this could be specified with an argumentbootstrapto the constructor. -
In general, nothing is stopping the user from creating e.g.,
pf_step()which is inconsistent withstep_sample(), etc.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
bootstrap
|
Boolean for whether or not to create a bootstrap particle filter. |
required |
Methods:
| Name | Description |
|---|---|
step_sample |
Sample from default proposal distribution |
step_lpdf |
Calculate log-density of the default proposal distribution |
init_sample |
Sample from default initial proposal distribution |
init_lpdf |
Calculate log-density of the default proposal distribution |
pf_step |
Particle filter update. |
pf_init |
Initial step of particle filter. |
Source code in src/pfjax/models/base_model.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | |
step_sample(key, x_prev, y_curr, theta)
Sample from default proposal distribution
::
q(x_curr | x_prev, y_curr, theta) = p(x_curr | x_prev, theta)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
PRNG key. |
required | |
x_prev
|
State variable at previous time |
required | |
y_curr
|
Measurement variable at current time |
required | |
theta
|
Parameter value. |
required |
Returns:
| Type | Description |
|---|---|
|
Sample of the state variable |
Source code in src/pfjax/models/base_model.py
step_lpdf(x_curr, x_prev, y_curr, theta)
Calculate log-density of the default proposal distribution
::
q(x_curr | x_prev, y_curr, theta) = p(x_curr | x_prev, theta)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x_curr
|
State variable at current time |
required | |
x_prev
|
State variable at previous time |
required | |
y_curr
|
Measurement variable at current time |
required | |
theta
|
Parameter value. |
required |
Returns:
| Type | Description |
|---|---|
|
Log-density of the state variable |
Source code in src/pfjax/models/base_model.py
init_sample(key, y_init, theta)
Sample from default initial proposal distribution
::
q(x_init | y_init, theta) = p(x_init | theta)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
PRNG key. |
required | |
y_init
|
Measurement variable at initial time |
required | |
theta
|
Parameter value. |
required |
Returns:
| Type | Description |
|---|---|
|
Sample of the state variable |
Source code in src/pfjax/models/base_model.py
init_lpdf(x_init, y_init, theta)
Calculate log-density of the default proposal distribution
::
q(x_curr | x_prev, y_curr, theta) = p(x_curr | x_prev, theta)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x_init
|
State variable at initial time |
required | |
y_init
|
Measurement variable at initial time |
required | |
theta
|
Parameter value. |
required |
Returns:
| Type | Description |
|---|---|
|
Log-density of the state variable |
Source code in src/pfjax/models/base_model.py
pf_step(key, x_prev, y_curr, theta)
Particle filter update.
Returns a draw from proposal distribution
::
x_curr ~ q(x_curr) = q(x_curr | x_prev, y_curr, theta)
and the log weight
::
logw = log p(y_curr | x_curr, theta) + log p(x_curr | x_prev, theta) - log q(x_curr)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
PRNG key. |
required | |
x_prev
|
State variable at previous time |
required | |
y_curr
|
Measurement variable at current time |
required | |
theta
|
Parameter value. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Tuple |
|
|
|
||
|
Source code in src/pfjax/models/base_model.py
pf_init(key, y_init, theta)
Initial step of particle filter.
Returns a draw from the proposal distribution
::
x_init ~ q(x_init) = q(x_init | y_init, theta)
and calculates the log weight
::
logw = log p(y_init | x_init, theta) + log p(x_init | theta) - log q(x_init)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
PRNG key. |
required | |
y_init
|
Measurement variable at initial time |
required | |
theta
|
Parameter value. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Tuple |
|
|
|
||
|
Source code in src/pfjax/models/base_model.py
particle_filter_rb(model, key, y_meas, theta, n_particles, resampler=resample_multinomial, score=False, fisher=False, history=False)
Rao-Blackwellized particle filter.
Notes:
- Algorithm 2 of Poyiadjis et al 2011.
- Can optionally use an auxiliary particle filter if `model.pf_aux()` is provided.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
Object specifying the state-space model having the following methods:
|
required | |
key
|
PRNG key. |
required | |
y_meas
|
JAX array with leading dimension |
required | |
theta
|
Parameter value. |
required | |
n_particles
|
Number of particles. |
required | |
resampler
|
Function used at step |
resample_multinomial
|
|
score
|
Whether or not to return an estimate of the score function at |
False
|
|
fisher
|
Whether or not to return an estimate of the Fisher information at |
False
|
|
history
|
Whether to output the history of the filter or only the last step. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
Dictionary |
|
|
|
||
|
||
|
||
|
||
|
||
|
Source code in src/pfjax/particle_filter.py
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 | |