containers
Data classes for describing models in a structured way.
Model
dataclass
Dataclass to describe a model. This includes some caching features that improve performance when fitting. Note that because of the caching dynamically modifying what structures compose the model may not work as intended so beware.
Attributes:
Name | Type | Description |
---|---|---|
name |
str
|
The name of the model. This is used for display purposes only. |
structures |
list[Structure]
|
The structures that compose the model.
Will be sorted to match |
xyz |
tuple[Array, Array, Array, float, float]
|
Defines the grid used by model computation.
The first three elements are a sparse 3D grid in arcseconds,
with the first two elements being RA and Dec respectively and the third
element being the LOS. The last two elements are the model center in Ra and Dec
(also in arcseconds). The structure functions use this as the coordinate to reference
|
dz |
float
|
The LOS integration factor. Should minimally be the pixel size in arcseconds along the LOS, but can also include additional factors for performing unit conversions. |
beam |
Array
|
The beam to convolve the model with. |
n_rounds |
int
|
How many rounds of fitting to perform. |
cur_round |
int, default: 0
|
Which round of fitting we are currently in, rounds are 0 indexed. |
chisq |
float, default: np.inf
|
The chi-squared of this model relative to some data. Used when fitting. |
original_order |
list[int]
|
The original order than the structures in |
Source code in witch/containers.py
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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 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 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 |
|
errs
property
Get the current parameter errors.
Returns:
Name | Type | Description |
---|---|---|
errs |
Array
|
The errors in the same order as vals. |
model
cached
property
The evaluated model, see core.model
for details.
Note that this is cached, but is automatically reset whenever
update
is called or cur_round
or xyz
changes.
Returns:
Name | Type | Description |
---|---|---|
model |
Array
|
The model evaluted on |
model_grad
cached
property
The evaluated model and its gradient, see core.model_grad
for details.
Note that this is cached, but is automatically reset whenever
update
is called or cur_round
changes.
Returns:
Name | Type | Description |
---|---|---|
model |
Array
|
The model evaluted on |
grad |
Array
|
The gradient evaluted on |
n_struct
cached
property
Number of each type of structures in the model. Note that this is cached.
Returns:
Name | Type | Description |
---|---|---|
n_struct |
list[int]
|
|
par_names
cached
property
Get the names of all parameters. Note that this is cached.
Returns:
Name | Type | Description |
---|---|---|
par_names |
list[str]
|
Parameter names in the same order as |
pars
property
Get the current parameter values.
Returns:
Name | Type | Description |
---|---|---|
pars |
Array
|
The parameter values in the order expected by |
priors
cached
property
Get the priors for all parameters. Note that this is cached.
Returns:
Name | Type | Description |
---|---|---|
priors |
tuple[Array, Array]
|
Parameter priors in the same order as |
to_fit
property
Get which parameters we want to fit for the current round.
Returns:
Name | Type | Description |
---|---|---|
to_fit |
Array
|
|
to_fit_ever
cached
property
Check which parameters we ever fit. Note that this is cached.
Returns:
Name | Type | Description |
---|---|---|
to_fit_ever |
Array
|
|
from_cfg(cfg, beam=None)
classmethod
Create an instance of model from a witcher config.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cfg
|
dict
|
The config loaded into a dict. |
required |
beam
|
Optional[Array]
|
|
None
|
Returns:
Name | Type | Description |
---|---|---|
model |
Model
|
The model described by the config. |
Source code in witch/containers.py
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 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 |
|
load(path)
classmethod
Load the model from a file with dill.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
str
|
The path to the saved model. Does not check to see if the path is valid. |
required |
Returns:
Name | Type | Description |
---|---|---|
model |
Model
|
The loaded model. |
Source code in witch/containers.py
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 |
|
remove_struct(struct_name)
Remove structure by name.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
struct_name
|
str
|
Name of struct to be removed. |
required |
Source code in witch/containers.py
497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 |
|
save(path)
Serialize the model to a file with dill.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
str
|
The file to save to. Does not check to see if the path is valid. |
required |
Source code in witch/containers.py
522 523 524 525 526 527 528 529 530 531 532 533 |
|
to_tod(dx, dy)
Project the model into a TOD.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dx
|
ArrayLike
|
The RA TOD in arcseconds. |
required |
dy
|
ArrayLike
|
The Dec TOD in arcseconds. |
required |
Returns:
Name | Type | Description |
---|---|---|
tod |
Array
|
The model as a TOD. Same shape as dx. |
Source code in witch/containers.py
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 |
|
to_tod_grad(dx, dy)
Project the model and gradient into a TOD.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dx
|
ArrayLike
|
The RA TOD in arcseconds. |
required |
dy
|
ArrayLike
|
The Dec TOD in arcseconds. |
required |
Returns:
Name | Type | Description |
---|---|---|
tod |
Array
|
The model as a TOD. Same shape as dx. |
grad_tod |
Array
|
The gradient as a TOD.
Has shape |
Source code in witch/containers.py
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 |
|
update(vals, errs, chisq)
Update the parameter values and errors as well as the model chi-squared.
This also resets the cache on model
and model_grad
if vals
is different than self.pars
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
vals
|
Array
|
The new parameter values.
Should be in the same order as |
required |
errs
|
Array
|
The new parameter errors.
Should be in the same order as |
required |
chisq
|
Array
|
The new chi-squared. Should be a scalar float array. |
required |
Returns:
Name | Type | Description |
---|---|---|
updated |
Model
|
The updated model. While nominally the model will update in place, returning it alows us to use this function in JITed functions. |
Source code in witch/containers.py
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 |
|
Parameter
dataclass
Dataclass to represent a single parameter of a model.
Attributes:
Name | Type | Description |
---|---|---|
name |
str
|
The name of the parameter. This is used only for display purposes. |
fit |
Array
|
Should be array with length |
val |
float
|
The value of the parameter. |
err |
float
|
The error on the parameter value. |
prior |
tuple[float, float]
|
The prior on this parameter.
Should be the tuple |
Source code in witch/containers.py
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 |
|
fit_ever
property
Check if this parameter is set to ever be fit.
Returns:
Name | Type | Description |
---|---|---|
fit_ever |
Array
|
Single element jax boolean array. True if this parameter is ever fit. |
Structure
dataclass
Dataclass to represent a structure within the model.
Attributes:
Name | Type | Description |
---|---|---|
name |
str
|
The name of the structure. This is used only for display purposes. |
structure |
str
|
The type of structure that this is an instance of.
Should be a string that appears in |
parameters |
list[Parameter]
|
The model parameters for this structure. |
Raises:
Type | Description |
---|---|
ValueError
|
If |
Source code in witch/containers.py
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 |
|