5d848ec07c
* Add properties and `IPAdapterTesterMixin` tests for `StableDiffusionPanoramaPipeline`
* Fix variable name typo and update comments
* Update deprecated `output_type="numpy"` to "np" in test files
* Discard changes to src/diffusers/pipelines/stable_diffusion_panorama/pipeline_stable_diffusion_panorama.py
* Update test_stable_diffusion_panorama.py
* Update numbers in README.md
* Update get_guidance_scale_embedding method to use timesteps instead of w
* Update number of checkpoints in README.md
* Add type hints and fix var name
* Fix PyTorch's convention for inplace functions
* Fix a typo
* Revert "Fix PyTorch's convention for inplace functions"
This reverts commit 74350cf65b.
* Fix typos
* Indent
* Refactor get_guidance_scale_embedding method in LEditsPPPipelineStableDiffusionXL class
112 lines
3.9 KiB
Python
112 lines
3.9 KiB
Python
# coding=utf-8
|
|
# Copyright 2024 HuggingFace Inc.
|
|
#
|
|
# 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.
|
|
|
|
import unittest
|
|
|
|
import numpy as np
|
|
import torch
|
|
|
|
from diffusers import DDPMPipeline, DDPMScheduler, UNet2DModel
|
|
from diffusers.utils.testing_utils import enable_full_determinism, require_torch_gpu, slow, torch_device
|
|
|
|
|
|
enable_full_determinism()
|
|
|
|
|
|
class DDPMPipelineFastTests(unittest.TestCase):
|
|
@property
|
|
def dummy_uncond_unet(self):
|
|
torch.manual_seed(0)
|
|
model = UNet2DModel(
|
|
block_out_channels=(32, 64),
|
|
layers_per_block=2,
|
|
sample_size=32,
|
|
in_channels=3,
|
|
out_channels=3,
|
|
down_block_types=("DownBlock2D", "AttnDownBlock2D"),
|
|
up_block_types=("AttnUpBlock2D", "UpBlock2D"),
|
|
)
|
|
return model
|
|
|
|
def test_fast_inference(self):
|
|
device = "cpu"
|
|
unet = self.dummy_uncond_unet
|
|
scheduler = DDPMScheduler()
|
|
|
|
ddpm = DDPMPipeline(unet=unet, scheduler=scheduler)
|
|
ddpm.to(device)
|
|
ddpm.set_progress_bar_config(disable=None)
|
|
|
|
generator = torch.Generator(device=device).manual_seed(0)
|
|
image = ddpm(generator=generator, num_inference_steps=2, output_type="np").images
|
|
|
|
generator = torch.Generator(device=device).manual_seed(0)
|
|
image_from_tuple = ddpm(generator=generator, num_inference_steps=2, output_type="np", return_dict=False)[0]
|
|
|
|
image_slice = image[0, -3:, -3:, -1]
|
|
image_from_tuple_slice = image_from_tuple[0, -3:, -3:, -1]
|
|
|
|
assert image.shape == (1, 32, 32, 3)
|
|
expected_slice = np.array(
|
|
[9.956e-01, 5.785e-01, 4.675e-01, 9.930e-01, 0.0, 1.000, 1.199e-03, 2.648e-04, 5.101e-04]
|
|
)
|
|
|
|
assert np.abs(image_slice.flatten() - expected_slice).max() < 1e-2
|
|
assert np.abs(image_from_tuple_slice.flatten() - expected_slice).max() < 1e-2
|
|
|
|
def test_inference_predict_sample(self):
|
|
unet = self.dummy_uncond_unet
|
|
scheduler = DDPMScheduler(prediction_type="sample")
|
|
|
|
ddpm = DDPMPipeline(unet=unet, scheduler=scheduler)
|
|
ddpm.to(torch_device)
|
|
ddpm.set_progress_bar_config(disable=None)
|
|
|
|
generator = torch.manual_seed(0)
|
|
image = ddpm(generator=generator, num_inference_steps=2, output_type="np").images
|
|
|
|
generator = torch.manual_seed(0)
|
|
image_eps = ddpm(generator=generator, num_inference_steps=2, output_type="np")[0]
|
|
|
|
image_slice = image[0, -3:, -3:, -1]
|
|
image_eps_slice = image_eps[0, -3:, -3:, -1]
|
|
|
|
assert image.shape == (1, 32, 32, 3)
|
|
tolerance = 1e-2 if torch_device != "mps" else 3e-2
|
|
assert np.abs(image_slice.flatten() - image_eps_slice.flatten()).max() < tolerance
|
|
|
|
|
|
@slow
|
|
@require_torch_gpu
|
|
class DDPMPipelineIntegrationTests(unittest.TestCase):
|
|
def test_inference_cifar10(self):
|
|
model_id = "google/ddpm-cifar10-32"
|
|
|
|
unet = UNet2DModel.from_pretrained(model_id)
|
|
scheduler = DDPMScheduler.from_pretrained(model_id)
|
|
|
|
ddpm = DDPMPipeline(unet=unet, scheduler=scheduler)
|
|
ddpm.to(torch_device)
|
|
ddpm.set_progress_bar_config(disable=None)
|
|
|
|
generator = torch.manual_seed(0)
|
|
image = ddpm(generator=generator, output_type="np").images
|
|
|
|
image_slice = image[0, -3:, -3:, -1]
|
|
|
|
assert image.shape == (1, 32, 32, 3)
|
|
expected_slice = np.array([0.4200, 0.3588, 0.1939, 0.3847, 0.3382, 0.2647, 0.4155, 0.3582, 0.3385])
|
|
assert np.abs(image_slice.flatten() - expected_slice).max() < 1e-2
|