diffusion
ls_mlkit.diffusion
BaseDiffuser
Bases: BaseGenerativeModel
abstract method:
Source code in src/ls_mlkit/diffusion/base_diffuser.py
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 | |
__init__(config, time_scheduler)
Initialize the BaseDiffuser
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
``BaseDiffuserConfig``
|
the config of the diffuser |
required |
time_scheduler
|
``DiffusionTimeScheduler``
|
the time scheduler of the diffuser |
required |
Source code in src/ls_mlkit/diffusion/base_diffuser.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 | |
EuclideanDDIMConfig
Bases: EuclideanDDPMConfig
Source code in src/ls_mlkit/diffusion/euclidean_ddim_diffuser.py
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 | |
__init__(n_discretization_steps=1000, ndim_micro_shape=2, use_probability_flow=False, use_clip=True, clip_sample_range=1.0, use_dyn_thresholding=False, dynamic_thresholding_ratio=0.995, sample_max_value=1.0, betas=None, n_inference_steps=1000, eta=0.0, *args, **kwargs)
Initialize the EuclideanDDIMConfig
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n_discretization_steps
|
int
|
the number of discretization steps |
1000
|
ndim_micro_shape
|
int
|
the number of dimensions of the micro shape |
2
|
use_probability_flow
|
bool
|
whether to use probability flow |
False
|
use_clip
|
bool
|
whether to use clip |
True
|
clip_sample_range
|
float
|
the range of the clip |
1.0
|
use_dyn_thresholding
|
bool
|
whether to use dynamic thresholding |
False
|
dynamic_thresholding_ratio
|
float
|
the ratio of the dynamic thresholding |
0.995
|
sample_max_value
|
float
|
the maximum value of the sample used in thresholding |
1.0
|
betas
|
Tensor
|
the betas |
None
|
n_inference_steps
|
int
|
the number of inference steps |
1000
|
eta
|
float
|
the eta |
0.0
|
Returns:
| Type | Description |
|---|---|
|
None |
Source code in src/ls_mlkit/diffusion/euclidean_ddim_diffuser.py
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 | |
EuclideanDDIMDiffuser
Bases: EuclideanDDPMDiffuser
Source code in src/ls_mlkit/diffusion/euclidean_ddim_diffuser.py
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 | |
get_sigma2(t, prev_t)
Compute DDIM variance term
.. math:: \sigma^2 = (\frac{1 - \bar{\alpha}{pre}}{1 - \bar{\alpha}{t}}) \cdot ( 1- \frac{\bar{\alpha}{t}}{\bar{\alpha}{pre}})
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
t
|
Tensor
|
timestep |
required |
prev_t
|
Tensor
|
previous timestep |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Tensor |
Tensor
|
:math: |
Source code in src/ls_mlkit/diffusion/euclidean_ddim_diffuser.py
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | |
step(x_t, t, padding_mask=None, *args, **kwargs)
DDIM sampling algorithm:
.. math::
\hat{x}_0 = \frac{x_t - \sqrt{1 - \bar{\alpha}_t} \cdot \epsilon_\theta(x_t, t)}{\sqrt{\bar{\alpha}_t}}
\text{direction} = \sqrt{1 - \bar{\alpha}_{t-1} - \sigma_t^2} \cdot \epsilon_\theta(x_t, t)
x_{t-1} = \sqrt{\bar{\alpha}_{t-1}} \cdot \hat{x}_0 + \text{direction} + \sigma_t \cdot z
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x_t
|
Tensor
|
the sample at timestep t |
required |
t
|
Tensor
|
the timestep |
required |
padding_mask
|
Tensor
|
the padding mask |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
Tensor |
dict
|
the sample at timestep t-1 |
Source code in src/ls_mlkit/diffusion/euclidean_ddim_diffuser.py
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 | |
EuclideanDDPMConfig
Bases: EuclideanDiffuserConfig
Config Class for Euclidean DDPM Diffuser
Source code in src/ls_mlkit/diffusion/euclidean_ddpm_diffuser.py
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 | |
__init__(n_discretization_steps=1000, ndim_micro_shape=2, use_probability_flow=False, use_clip=False, clip_sample_range=1.0, use_dyn_thresholding=False, dynamic_thresholding_ratio=0.995, sample_max_value=1.0, betas=None, *args, **kwargs)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n_discretization_steps
|
int
|
the number of discretization steps |
1000
|
ndim_micro_shape
|
int
|
the number of dimensions of the micro shape |
2
|
use_probability_flow
|
whether to use probability flow |
False
|
|
use_clip
|
bool
|
whether to use clip |
False
|
clip_sample_range
|
float
|
the range of the clip |
1.0
|
use_dyn_thresholding
|
bool
|
whether to use dynamic thresholding |
False
|
dynamic_thresholding_ratio
|
the ratio of the dynamic thresholding |
0.995
|
|
sample_max_value
|
float
|
the maximum value of the sample used in thresholding |
1.0
|
betas
|
the betas |
None
|
Returns: None
Source code in src/ls_mlkit/diffusion/euclidean_ddpm_diffuser.py
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 | |
EuclideanDDPMDiffuser
Bases: EuclideanDiffuser
Source code in src/ls_mlkit/diffusion/euclidean_ddpm_diffuser.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 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 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 | |
__init__(config, time_scheduler, masker, model, loss_fn)
Initialize the EuclideanDDPMDiffuser
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
EuclideanDDPMConfig
|
the config of the diffuser |
required |
time_scheduler
|
DiffusionTimeScheduler
|
the time scheduler of the diffuser |
required |
masker
|
MaskerInterface
|
the masker of the diffuser |
required |
model
|
Module
|
the model of the diffuser |
required |
loss_fn
|
Callable[[Tensor, Tensor, Tensor], Tensor]
|
the loss function of the diffuser |
required |
Returns:
| Type | Description |
|---|---|
|
None |
Source code in src/ls_mlkit/diffusion/euclidean_ddpm_diffuser.py
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | |
q_xt_x_0(x_0, t, mask)
Forward process
.. math::
q(x_t|x_0) = \mathcal{N}(\sqrt{\alpha_t} x_0, \sqrt{1-\alpha_t} I)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x_0
|
Tensor
|
:math: |
required |
t
|
Tensor
|
:math: |
required |
mask
|
Tensor
|
the mask of the sample |
required |
Returns:
| Type | Description |
|---|---|
Tuple[Tensor, Tensor]
|
Tuple[Tensor, Tensor]: the expectation and standard deviation of the sample |
Source code in src/ls_mlkit/diffusion/euclidean_ddpm_diffuser.py
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | |
step(x_t, t, padding_mask=None, *args, **kwargs)
Predict the sample from the previous timestep by reversing the SDE. This function propagates the diffusion process from the learned model outputs.
Based on the standard DDPM sampling formula:
.. math::
\hat{\mathbf{x}}_0:=\frac{1}{\sqrt{\bar{\alpha}_t}}(\mathbf{x}_t - \sqrt{1-\bar{\alpha}_t}\mathbf{\epsilon}_{\theta}(\mathbf{x}_t,t))
\mathcal{N}\left( \boldsymbol{x}_{t-1}; \underbrace{\frac{\sqrt{\alpha_t}(1-\bar{\alpha}_{t-1})\boldsymbol{x}_t + \sqrt{\bar{\alpha}_{t-1}}(1-\alpha_t)\hat{\boldsymbol{x}}_0}{1-\bar{\alpha}_t}}_{\mu_q(\boldsymbol{x}_t, \hat{\boldsymbol{x}}_0)}, \underbrace{\frac{(1-\alpha_t)(1-\bar{\alpha}_{t-1})}{1-\bar{\alpha}_t}\mathbf{I}}_{\Sigma_q(t)} \right)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x_t
|
Tensor
|
the sample at timestep t |
required |
t
|
Tensor
|
the timestep |
required |
padding_mask
|
Tensor
|
the padding mask |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
dict
|
"x": the sample at timestep t-1 "E_x0_xt": the predicted original sample |
Source code in src/ls_mlkit/diffusion/euclidean_ddpm_diffuser.py
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 | |
get_posterior_mean_fn(score=None, score_fn=None)
Get the posterior mean function
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
score
|
Tensor
|
the score of the sample |
None
|
score_fn
|
Callable
|
the function to compute score |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
Callable |
the posterior mean function |
Source code in src/ls_mlkit/diffusion/euclidean_ddpm_diffuser.py
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 | |
EuclideanDiffuser
Bases: BaseDiffuser
Source code in src/ls_mlkit/diffusion/euclidean_diffuser.py
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 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 | |
EuclideanEDMConfig
Bases: EuclideanDiffuserConfig
Config Class for Euclidean EDM Diffuser
Source code in src/ls_mlkit/diffusion/euclidean_edm_diffuser.py
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 | |
__init__(n_discretization_steps=200, ndim_micro_shape=2, P_mean=-1.2, P_std=1.2, sigma_data=0.5, sigma_min=0.002, sigma_max=80.0, rho=7.0, use_2nd_order_correction=True, use_ode_flow=False, S_churn=0.0, S_min=0.0, S_max=float('inf'), S_noise=1.0, use_clip=False, clip_sample_range=1.0, use_dyn_thresholding=False, dynamic_thresholding_ratio=0.995, sample_max_value=1.0, sigma_multiply_by_sigma_data=False, *args, **kwargs)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n_discretization_steps
|
int
|
the number of discretization steps |
200
|
ndim_micro_shape
|
int
|
the number of dimensions of the micro shape |
2
|
P_mean
|
float
|
mean of the log-normal distribution for sampling sigma during training |
-1.2
|
P_std
|
float
|
standard deviation of the log-normal distribution for sampling sigma during training |
1.2
|
sigma_data
|
float
|
expected standard deviation of the training data |
0.5
|
sigma_min
|
float
|
minimum supported noise level |
0.002
|
sigma_max
|
float
|
maximum supported noise level |
80.0
|
rho
|
float
|
time step exponent for sampling schedule |
7.0
|
Returns: None
Source code in src/ls_mlkit/diffusion/euclidean_edm_diffuser.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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | |
timestep_index_to_sigma(timestep_index)
Convert discrete timesteps to sigma values.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
discrete_t
|
discrete timesteps, shape=(...) |
required |
Returns:
| Name | Type | Description |
|---|---|---|
sigma |
Tensor
|
noise levels, shape=(...) |
Source code in src/ls_mlkit/diffusion/euclidean_edm_diffuser.py
112 113 114 115 116 117 118 119 120 121 122 | |
compute_loss_weight(sigma)
Compute EDM loss weight: (sigma² + sigma_data²) / (sigma * sigma_data)².
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sigma
|
Tensor
|
noise level, shape=(...) |
required |
Returns:
| Name | Type | Description |
|---|---|---|
weight |
Tensor
|
the loss weight, shape=(...) |
Source code in src/ls_mlkit/diffusion/euclidean_edm_diffuser.py
124 125 126 127 128 129 130 131 132 133 | |
EuclideanEDMDiffuser
Bases: EuclideanDiffuser
Source code in src/ls_mlkit/diffusion/euclidean_edm_diffuser.py
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 | |
compute_loss(**batch)
Compute the EDM loss.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
**batch
|
batch dictionary containing: - gt_data: ground truth data x_0 - padding_mask: padding mask |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
dict
|
A dictionary containing the loss and other information |
Source code in src/ls_mlkit/diffusion/euclidean_edm_diffuser.py
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 | |
step(x_t, t, padding_mask=None, *args, **kwargs)
EDM sampling step (Euler or Heun's method).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x_t
|
Tensor
|
the sample at timestep t |
required |
t
|
Tensor
|
the timestep (all elements must be the same) |
required |
padding_mask
|
Optional[Tensor]
|
the padding mask |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
dict
|
|
Source code in src/ls_mlkit/diffusion/euclidean_edm_diffuser.py
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 | |
get_posterior_mean_fn(score=None, score_fn=None)
Get the posterior mean function for EDM.
For EDM, the posterior mean is: .. math:: E[x_0|x_t] = D_\theta(x_t, \sigma_t)
where D_\theta is the denoised prediction.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
score
|
Tensor
|
the score of the sample |
None
|
score_fn
|
Callable
|
the function to compute score |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
Callable |
the posterior mean function |
Source code in src/ls_mlkit/diffusion/euclidean_edm_diffuser.py
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 | |
get_condition_post_compute_loss_hook(conditioner_list)
Get hook for conditioning after loss computation (training).
This hook modifies the loss to include conditional guidance during training. It computes the conditional score and updates the loss accordingly.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
conditioner_list
|
list[Conditioner]
|
list of conditioners |
required |
Returns:
| Name | Type | Description |
|---|---|---|
GMHook |
the hook for POST_COMPUTE_LOSS stage |
Source code in src/ls_mlkit/diffusion/euclidean_edm_diffuser.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 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 | |
get_condition_pre_update_in_step_fn_hook(conditioner_list)
Get hook for conditioning before update in step function (sampling).
This hook applies conditional guidance during sampling by modifying the predicted denoised sample based on the conditional score.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
conditioner_list
|
list[Conditioner]
|
list of conditioners |
required |
Returns:
| Name | Type | Description |
|---|---|---|
GMHook |
the hook for PRE_UPDATE_IN_STEP_FN stage |
Source code in src/ls_mlkit/diffusion/euclidean_edm_diffuser.py
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 | |
EuclideanVPSDEDiffuser
Bases: EuclideanDiffuser
Source code in src/ls_mlkit/diffusion/euclidean_vpsde_diffuser.py
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 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 | |
__init__(config, time_scheduler, masker, model, loss_fn)
Initialize the EuclideanVPSDEDiffuser
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
EuclideanVPSDEConfig
|
the config of the diffuser |
required |
time_scheduler
|
DiffusionTimeScheduler
|
the time scheduler of the diffuser |
required |
masker
|
MaskerInterface
|
the masker of the diffuser |
required |
model
|
Module
|
the model of the diffuser |
required |
loss_fn
|
Callable[[Tensor, Tensor, Tensor], Tensor]
|
the loss function of the diffuser |
required |
Returns:
| Type | Description |
|---|---|
|
None |
Source code in src/ls_mlkit/diffusion/euclidean_vpsde_diffuser.py
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 | |
step(x_t, t, padding_mask=None, *args, **kwargs)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x_t
|
Tensor
|
the sample at timestep t |
required |
t
|
Tensor
|
the timestep |
required |
padding_mask
|
Tensor
|
the padding mask |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
Tensor |
dict
|
the sample at timestep t-1 |
Source code in src/ls_mlkit/diffusion/euclidean_vpsde_diffuser.py
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 | |
get_posterior_mean_fn(score=None, score_fn=None)
Get the posterior mean function
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
score
|
Tensor
|
the score of the sample |
None
|
score_fn
|
Callable
|
the function to compute score |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
Callable |
the posterior mean function |
Source code in src/ls_mlkit/diffusion/euclidean_vpsde_diffuser.py
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 | |
SO3Diffuser
Bases: LieGroupDiffuser
Source code in src/ls_mlkit/diffusion/so3_diffuser.py
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 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 | |
prior_sampling(shape)
Sample initial noise used for reverse process
.. math::
\mathcal{U}_{SO(3)}
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
shape
|
Tuple[int, ...]
|
the shape of the sample |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Tensor |
Tensor
|
the initial noise |
Source code in src/ls_mlkit/diffusion/so3_diffuser.py
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 | |
forward_process(x_0, discrete_t, mask, *args, **kwargs)
Forward process
.. math::
\text{IG}_{\text{SO}(3)} (\mathbf{x}; \mathbf{\mu}, \sigma^2) = f_{\sigma} (\arccos((\text{tr}(\mathbf{\mu}^T \mathbf{x}) - 1)/2)) \quad \forall \mathbf{x} \in \text{SO}(3)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x_0
|
Tensor
|
the initial sample |
required |
discrete_t
|
Tensor
|
the discrete timestep |
required |
mask
|
Tensor
|
the mask |
required |
*args
|
Any
|
additional arguments |
()
|
**kwargs
|
Any
|
additional keyword arguments |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
dict
|
a dictionary that must contain the key "x_t" |
Source code in src/ls_mlkit/diffusion/so3_diffuser.py
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 | |
get_ground_truth_score(x_0, x_t, discrete_t, padding_mask)
Denoise Score Matching
.. math:: \nabla_x \log p_{0t} (x_t | x_0)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x_0
|
Tensor
|
description |
required |
x_t
|
Tensor
|
description |
required |
discrete_t
|
Tensor
|
description |
required |
padding_mask
|
Tensor
|
description |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Tensor |
Tensor
|
description |
Source code in src/ls_mlkit/diffusion/so3_diffuser.py
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 | |
step(x_t, discrete_t, padding_mask=None, *args, **kwargs)
.. math::
dx &= \exp_{x_t}(f_{rev} dt + g_{rev} dw)\\
x_{t+\Delta_t} &= \exp_{x_t}(- f_{rev} |\Delta_t| + g_{rev} \Delta w)\\
f_{rev} &= (f - g^2 \nabla_x \ln p_t(x))\\
g_{rev} &= g\\
Source code in src/ls_mlkit/diffusion/so3_diffuser.py
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 | |
sample_noise_in_lie_algebra(macro_shape)
Sample noise in Lie algebra, Skew-symmetric matrix
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
macro_shape
|
Tuple[int, ...]
|
the macro shape of the noise |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Tensor |
Tensor
|
the noise in Lie algebra of shape :math: |
Source code in src/ls_mlkit/diffusion/so3_diffuser.py
275 276 277 278 279 280 281 282 283 284 285 286 287 | |