| """Recycling strategy for diffusion training.""" |
| from typing import Callable |
|
|
| import chex |
| import jax |
| import jax.numpy as jnp |
| from jax import lax |
| from omegaconf import DictConfig |
|
|
| from imgx.datasets.constant import IMAGE, LABEL |
| from imgx.datasets.dataset_info import DatasetInfo |
| from imgx.diffusion.time_sampler import TimeSampler |
| from imgx.task.diffusion_segmentation.diffusion import DiffusionSegmentation |
| from imgx.task.diffusion_segmentation.diffusion_step import get_loss_logits_metrics |
| from imgx.task.diffusion_segmentation.train_state import TrainState |
|
|
|
|
| def get_recycling_loss_step( |
| train_state: TrainState, |
| dataset_info: DatasetInfo, |
| loss_config: DictConfig, |
| diffusion_model: DiffusionSegmentation, |
| time_sampler: TimeSampler, |
| prev_step: str, |
| reverse_step: bool, |
| ) -> Callable[ |
| [chex.ArrayTree, chex.ArrayTree, jax.Array], |
| tuple[jnp.ndarray, tuple[jnp.ndarray, chex.ArrayTree, jnp.ndarray, jnp.ndarray]], |
| ]: |
| """Return loss_step for recycling diffusion. |
| |
| Args: |
| train_state: train state. |
| dataset_info: dataset info to transform label to mask. |
| loss_config: have weights of diff losses. |
| diffusion_model: segmentation diffusion model. |
| time_sampler: time sampler for training. |
| prev_step: max or next. |
| max means the previous step is num_timesteps - 1 |
| next means the previous step is min(t+1, num_timesteps - 1) |
| reverse_step: reverse the previous step or not. |
| |
| Returns: |
| loss_step: loss step function. |
| """ |
|
|
| def loss_step( |
| params: chex.ArrayTree, |
| batch: dict[str, jnp.ndarray], |
| key: jax.Array, |
| ) -> tuple[jnp.ndarray, tuple[jnp.ndarray, chex.ArrayTree, jnp.ndarray, jnp.ndarray]]: |
| """Apply forward and calculate loss.""" |
| key_dropout_re, key_dropout, key_t, key_noise_re, key_noise = jax.random.split( |
| key=key, num=5 |
| ) |
| image, label = batch[IMAGE], batch[LABEL] |
| mask_true = dataset_info.label_to_mask(label, axis=-1, dtype=image.dtype) |
| x_start = diffusion_model.mask_to_x(mask=mask_true) |
| batch_size = image.shape[0] |
|
|
| |
| |
| |
| |
| if prev_step == "max": |
| if reverse_step: |
| raise ValueError("reverse_step should be False when prev_step is max.") |
| t, t_index, probs_t = time_sampler.sample( |
| key=key_t, |
| batch_size=batch_size, |
| t_index_min=0, |
| t_index_max=diffusion_model.num_timesteps - 1, |
| loss_count_hist=train_state.loss_count_hist, |
| loss_sq_hist=train_state.loss_sq_hist, |
| ) |
| t_index_re = jnp.full( |
| shape=(batch_size,), |
| fill_value=diffusion_model.num_timesteps - 1, |
| dtype=jnp.int32, |
| ) |
| t_re = time_sampler.t_index_to_t(t_index=t_index_re) |
| elif prev_step == "next": |
| t, t_index, probs_t = time_sampler.sample( |
| key=key_t, |
| batch_size=batch_size, |
| t_index_min=0, |
| t_index_max=diffusion_model.num_timesteps - 1, |
| loss_count_hist=train_state.loss_count_hist, |
| loss_sq_hist=train_state.loss_sq_hist, |
| ) |
| t_index_re = t_index + 1 |
| t_re = time_sampler.t_index_to_t(t_index=t_index_re) |
| else: |
| raise ValueError(f"prev_step {prev_step} not recognised.") |
|
|
| |
| noise_re = diffusion_model.sample_noise( |
| key=key_noise_re, shape=x_start.shape, dtype=x_start.dtype |
| ) |
| x_t_re = diffusion_model.q_sample(x_start=x_start, noise=noise_re, t_index=t_index_re) |
| mask_t_re = diffusion_model.x_to_mask(x_t_re) |
| model_out_re = train_state.apply_fn( |
| {"params": params}, |
| True, |
| image, |
| mask_t_re, |
| t_re, |
| rngs={"dropout": key_dropout_re}, |
| ) |
| x_start_pred_re = diffusion_model.predict_xstart_from_model_out_xt( |
| model_out=model_out_re, |
| x_t=x_t_re, |
| t_index=t_index_re, |
| ) |
|
|
| |
| if reverse_step and (prev_step == "next"): |
| noise = noise_re |
| x_t = diffusion_model.predict_xprev_from_xstart_xt( |
| x_start=x_start_pred_re, |
| x_t=x_t_re, |
| t_index=t_index_re, |
| ) |
| else: |
| noise = diffusion_model.sample_noise( |
| key=key_noise, shape=x_start_pred_re.shape, dtype=x_start_pred_re.dtype |
| ) |
| x_t = diffusion_model.q_sample(x_start=x_start_pred_re, noise=noise, t_index=t_index) |
| mask_t = diffusion_model.x_to_mask(x_t) |
| mask_t = lax.stop_gradient(mask_t) |
|
|
| |
| model_out = train_state.apply_fn( |
| {"params": params}, |
| True, |
| image, |
| mask_t, |
| t, |
| rngs={"dropout": key_dropout}, |
| ) |
|
|
| |
| loss, loss_batch, logits, metrics = get_loss_logits_metrics( |
| batch=batch, |
| x_start=x_start, |
| x_t=x_t, |
| t_index=t_index, |
| probs_t=probs_t, |
| noise=noise, |
| model_out=model_out, |
| dataset_info=dataset_info, |
| loss_config=loss_config, |
| diffusion_model=diffusion_model, |
| ) |
|
|
| return loss, (logits, metrics, loss_batch, t_index) |
|
|
| return loss_step |
|
|