Spaces:
Running
on
Zero
Running
on
Zero
Stable-Makeup-unofficial
/
diffusers
/pipelines
/stochastic_karras_ve
/pipeline_stochastic_karras_ve.py
# Copyright 2023 The HuggingFace Team. All rights reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
from typing import List, Optional, Tuple, Union | |
import torch | |
from ...models import UNet2DModel | |
from ...schedulers import KarrasVeScheduler | |
from ...utils.torch_utils import randn_tensor | |
from ..pipeline_utils import DiffusionPipeline, ImagePipelineOutput | |
class KarrasVePipeline(DiffusionPipeline): | |
r""" | |
Pipeline for unconditional image generation. | |
Parameters: | |
unet ([`UNet2DModel`]): | |
A `UNet2DModel` to denoise the encoded image. | |
scheduler ([`KarrasVeScheduler`]): | |
A scheduler to be used in combination with `unet` to denoise the encoded image. | |
""" | |
# add type hints for linting | |
unet: UNet2DModel | |
scheduler: KarrasVeScheduler | |
def __init__(self, unet: UNet2DModel, scheduler: KarrasVeScheduler): | |
super().__init__() | |
self.register_modules(unet=unet, scheduler=scheduler) | |
def __call__( | |
self, | |
batch_size: int = 1, | |
num_inference_steps: int = 50, | |
generator: Optional[Union[torch.Generator, List[torch.Generator]]] = None, | |
output_type: Optional[str] = "pil", | |
return_dict: bool = True, | |
**kwargs, | |
) -> Union[Tuple, ImagePipelineOutput]: | |
r""" | |
The call function to the pipeline for generation. | |
Args: | |
batch_size (`int`, *optional*, defaults to 1): | |
The number of images to generate. | |
generator (`torch.Generator`, *optional*): | |
A [`torch.Generator`](https://pytorch.org/docs/stable/generated/torch.Generator.html) to make | |
generation deterministic. | |
num_inference_steps (`int`, *optional*, defaults to 50): | |
The number of denoising steps. More denoising steps usually lead to a higher quality image at the | |
expense of slower inference. | |
output_type (`str`, *optional*, defaults to `"pil"`): | |
The output format of the generated image. Choose between `PIL.Image` or `np.array`. | |
return_dict (`bool`, *optional*, defaults to `True`): | |
Whether or not to return a [`ImagePipelineOutput`] instead of a plain tuple. | |
Example: | |
Returns: | |
[`~pipelines.ImagePipelineOutput`] or `tuple`: | |
If `return_dict` is `True`, [`~pipelines.ImagePipelineOutput`] is returned, otherwise a `tuple` is | |
returned where the first element is a list with the generated images. | |
""" | |
img_size = self.unet.config.sample_size | |
shape = (batch_size, 3, img_size, img_size) | |
model = self.unet | |
# sample x_0 ~ N(0, sigma_0^2 * I) | |
sample = randn_tensor(shape, generator=generator, device=self.device) * self.scheduler.init_noise_sigma | |
self.scheduler.set_timesteps(num_inference_steps) | |
for t in self.progress_bar(self.scheduler.timesteps): | |
# here sigma_t == t_i from the paper | |
sigma = self.scheduler.schedule[t] | |
sigma_prev = self.scheduler.schedule[t - 1] if t > 0 else 0 | |
# 1. Select temporarily increased noise level sigma_hat | |
# 2. Add new noise to move from sample_i to sample_hat | |
sample_hat, sigma_hat = self.scheduler.add_noise_to_input(sample, sigma, generator=generator) | |
# 3. Predict the noise residual given the noise magnitude `sigma_hat` | |
# The model inputs and output are adjusted by following eq. (213) in [1]. | |
model_output = (sigma_hat / 2) * model((sample_hat + 1) / 2, sigma_hat / 2).sample | |
# 4. Evaluate dx/dt at sigma_hat | |
# 5. Take Euler step from sigma to sigma_prev | |
step_output = self.scheduler.step(model_output, sigma_hat, sigma_prev, sample_hat) | |
if sigma_prev != 0: | |
# 6. Apply 2nd order correction | |
# The model inputs and output are adjusted by following eq. (213) in [1]. | |
model_output = (sigma_prev / 2) * model((step_output.prev_sample + 1) / 2, sigma_prev / 2).sample | |
step_output = self.scheduler.step_correct( | |
model_output, | |
sigma_hat, | |
sigma_prev, | |
sample_hat, | |
step_output.prev_sample, | |
step_output["derivative"], | |
) | |
sample = step_output.prev_sample | |
sample = (sample / 2 + 0.5).clamp(0, 1) | |
image = sample.cpu().permute(0, 2, 3, 1).numpy() | |
if output_type == "pil": | |
image = self.numpy_to_pil(image) | |
if not return_dict: | |
return (image,) | |
return ImagePipelineOutput(images=image) | |