Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import PIL
- import gradio as gr
- import argparse, os, sys, glob
- import torch
- import torch.nn as nn
- import numpy as np
- from omegaconf import OmegaConf
- from PIL import Image
- from tqdm.notebook import tqdm, trange
- from itertools import islice
- from einops import rearrange, repeat
- from torchvision.utils import make_grid
- import time
- from pytorch_lightning import seed_everything
- from torch import autocast
- from contextlib import contextmanager, nullcontext
- import accelerate
- import mimetypes
- import gc
- from basicsr.utils import imwrite
- import cv2
- from gfpgan import GFPGANer
- from io import BytesIO
- import random
- mimetypes.init()
- mimetypes.add_type('application/javascript', '.js')
- import k_diffusion as K
- from ldm.util import instantiate_from_config
- from ldm.models.diffusion.ddim import DDIMSampler
- from ldm.models.diffusion.plms import PLMSSampler
- def FACE_RESTORATION(image, bg_upsampling, upscale):
- from basicsr.archs.rrdbnet_arch import RRDBNet
- from realesrgan import RealESRGANer
- model = RRDBNet(num_in_ch=3, num_out_ch=3, num_feat=64, num_block=23, num_grow_ch=32, scale=2)
- bg_upsampler = RealESRGANer(
- scale=2,
- model_path='https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.1/RealESRGAN_x2plus.pth',
- model=model,
- tile=400,
- tile_pad=10,
- pre_pad=0,
- half=True)
- arch = 'clean'
- channel_multiplier = 2
- model_name = 'GFPGANv1.3'
- model_path = os.path.join('/content/GFPGAN/experiments/pretrained_models/GFPGANv1.3.pth')
- restorer = GFPGANer(
- model_path=model_path,
- upscale=1,
- arch=arch,
- channel_multiplier=channel_multiplier,
- bg_upsampler=None
- )
- image=np.array(image)
- input_img = cv2.cvtColor(image, cv2.COLOR_RGB2BGR)
- cropped_faces, restored_faces, restored_img = restorer.enhance(
- input_img, has_aligned=False, only_center_face=False, paste_back=True)
- for idx, (cropped_face, restored_face) in enumerate(zip(cropped_faces, restored_faces)):
- image = cv2.cvtColor(restored_img, cv2.COLOR_BGR2RGB)
- image = bg_upsampler.enhance(image, outscale=upscale)[0]
- return image
- def chunk(it, size):
- it = iter(it)
- return iter(lambda: tuple(islice(it, size)), ())
- def load_model_from_config(config, ckpt, verbose=False):
- print(f"Loading model from {ckpt}")
- pl_sd = torch.load(ckpt, map_location="cpu")
- if "global_step" in pl_sd:
- print(f"Global Step: {pl_sd['global_step']}")
- sd = pl_sd["state_dict"]
- model = instantiate_from_config(config.model)
- m, u = model.load_state_dict(sd, strict=False)
- if len(m) > 0 and verbose:
- print("missing keys:")
- print(m)
- if len(u) > 0 and verbose:
- print("unexpected keys:")
- print(u)
- model.cuda()
- model.eval()
- return model
- def load_img_pil(img_pil):
- image = img_pil.convert("RGB")
- w, h = image.size
- print(f"loaded input image of size ({w}, {h})")
- w, h = map(lambda x: x - x % 64, (w, h)) # resize to integer multiple of 64
- image = image.resize((w, h), resample=PIL.Image.LANCZOS)
- print(f"cropped image to size ({w}, {h})")
- image = np.array(image).astype(np.float32) / 255.0
- image = image[None].transpose(0, 3, 1, 2)
- image = torch.from_numpy(image)
- return 2.*image - 1.
- def load_img(path):
- return load_img_pil(Image.open(path))
- class CFGDenoiser(nn.Module):
- def __init__(self, model):
- super().__init__()
- self.inner_model = model
- def forward(self, x, sigma, uncond, cond, cond_scale):
- x_in = torch.cat([x] * 2)
- sigma_in = torch.cat([sigma] * 2)
- cond_in = torch.cat([uncond, cond])
- uncond, cond = self.inner_model(x_in, sigma_in, cond=cond_in).chunk(2)
- return uncond + (cond - uncond) * cond_scale
- #from https://github.com/lstein/stable-diffusion/blob/main/ldm/simplet2i.py
- def split_weighted_subprompts(text):
- """
- grabs all text up to the first occurrence of ':'
- uses the grabbed text as a sub-prompt, and takes the value following ':' as weight
- if ':' has no value defined, defaults to 1.0
- repeats until no text remaining
- """
- remaining = len(text)
- prompts = []
- weights = []
- while remaining > 0:
- if ":" in text:
- idx = text.index(":") # first occurrence from start
- # grab up to index as sub-prompt
- prompt = text[:idx]
- remaining -= idx
- # remove from main text
- text = text[idx+1:]
- # find value for weight
- if " " in text:
- idx = text.index(" ") # first occurence
- else: # no space, read to end
- idx = len(text)
- if idx != 0:
- try:
- weight = float(text[:idx])
- except: # couldn't treat as float
- print(f"Warning: '{text[:idx]}' is not a value, are you missing a space?")
- weight = 1.0
- else: # no value found
- weight = 1.0
- # remove from main text
- remaining -= idx
- text = text[idx+1:]
- # append the sub-prompt and its weight
- prompts.append(prompt)
- weights.append(weight)
- else: # no : found
- if len(text) > 0: # there is still text though
- # take remainder as weight 1
- prompts.append(text)
- weights.append(1.0)
- remaining = 0
- return prompts, weights
- config = OmegaConf.load("configs/stable-diffusion/v1-inference.yaml")
- model = load_model_from_config(config, "/gdrive/My Drive/model.ckpt")
- device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu")
- model = model.half().to(device)
- def dream(prompt: str, init_img, ddim_steps: int, plms: bool, fixed_code: bool, ddim_eta: float, n_iter: int, n_samples: int, cfg_scales: str, denoising_strength: float, seed: int, height: int, width: int, same_seed: bool, GFPGAN: bool, bg_upsampling: bool, upscale: int):
- torch.cuda.empty_cache()
- parser = argparse.ArgumentParser()
- parser.add_argument(
- "--outdir",
- type=str,
- nargs="?",
- help="dir to write results to",
- default="/content/"
- )
- parser.add_argument(
- "--skip_grid",
- action='store_true',
- help="do not save a grid, only individual samples. Helpful when evaluating lots of samples",
- )
- parser.add_argument(
- "--skip_save",
- action='store_true',
- help="do not save indiviual samples. For speed measurements.",
- )
- parser.add_argument(
- "--C",
- type=int,
- default=4,
- help="latent channels",
- )
- parser.add_argument(
- "--f",
- type=int,
- default=8,
- help="downsampling factor, most often 8 or 16",
- )
- parser.add_argument(
- "--n_rows",
- type=int,
- default=0,
- help="rows in the grid (default: n_samples)",
- )
- parser.add_argument(
- "--from-file",
- type=str,
- help="if specified, load prompts from this file",
- )
- parser.add_argument(
- "--H",
- type=int,
- default=height,
- help="image height, in pixel space",
- )
- parser.add_argument(
- "--W",
- type=int,
- default=width,
- help="image width, in pixel space",
- )
- parser.add_argument(
- "--config",
- type=str,
- default="configs/stable-diffusion/v1-inference.yaml",
- help="path to config which constructs model",
- )
- parser.add_argument(
- "--ckpt",
- type=str,
- default="/gdrive/My Drive/model.ckpt\model.ckpt",
- help="path to checkpoint of model",
- )
- parser.add_argument(
- "--precision",
- type=str,
- help="evaluate at this precision",
- choices=["full", "autocast"],
- default="autocast"
- )
- opt = parser.parse_args()
- accelerator = accelerate.Accelerator()
- device = accelerator.device
- rng_seed = seed_everything(seed)
- seeds = torch.randint(-2 ** 63, 2 ** 63 - 1, [accelerator.num_processes])
- torch.manual_seed(seeds[accelerator.process_index].item())
- if plms and init_img == None:
- sampler = PLMSSampler(model)
- else:
- sampler = DDIMSampler(model)
- model_wrap = K.external.CompVisDenoiser(model)
- sigma_min, sigma_max = model_wrap.sigmas[0].item(), model_wrap.sigmas[-1].item()
- os.makedirs(opt.outdir, exist_ok=True)
- outpath = opt.outdir
- batch_size = n_samples
- n_rows = opt.n_rows if opt.n_rows > 0 else batch_size
- if not opt.from_file:
- prompt = prompt
- assert prompt is not None
- data = [batch_size * [prompt]]
- else:
- print(f"reading prompts from {opt.from_file}")
- with open(opt.from_file, "r") as f:
- data = f.read().splitlines()
- data = list(chunk(data, batch_size))
- sample_path = os.path.join(outpath)
- os.makedirs(sample_path, exist_ok=True)
- base_count = len(os.listdir(sample_path))
- seedit = 0
- if fixed_code and init_img == None:
- start_code = torch.randn([n_samples, opt.C, opt.H // opt.f, opt.W // opt.f], device=device)
- if init_img != None:
- image = init_img.convert("RGB")
- w, h = image.size
- print(f"loaded input image of size ({w}, {h})")
- w, h = map(lambda x: x - x % 32, (opt.W, opt.H)) # resize to integer multiple of 32
- image = image.resize((w, h), resample=PIL.Image.LANCZOS)
- print(f"cropped image to size ({w}, {h})")
- image = np.array(image).astype(np.float32) / 255.0
- image = image[None].transpose(0, 3, 1, 2)
- image = torch.from_numpy(image)
- if len(cfg_scales) > 1: cfg_scales = list(map(float, cfg_scales.split(' ')))
- output_images = []
- precision_scope = autocast if opt.precision == "autocast" else nullcontext
- with torch.no_grad():
- gc.collect()
- torch.cuda.empty_cache()
- with precision_scope("cuda"):
- if init_img != None:
- init_image = 2.*image - 1.
- init_image = init_image.to(device)
- init_image = repeat(init_image, '1 ... -> b ...', b=batch_size)
- init_latent = model.get_first_stage_encoding(model.encode_first_stage(init_image)) # move to latent space
- x0 = init_latent
- sampler.make_schedule(ddim_num_steps=ddim_steps, ddim_eta=ddim_eta, verbose=False)
- assert 0. <= denoising_strength <= 1., 'can only work with strength in [0.0, 1.0]'
- t_enc = int(denoising_strength * ddim_steps)
- print(f"target t_enc is {t_enc} steps")
- with model.ema_scope():
- tic = time.time()
- all_samples = list()
- for prompts in tqdm(data, desc="data", disable=not accelerator.is_main_process):
- output_images.append([])
- aaa = f'{rng_seed + seedit}{random.randint(8, 10000)}'
- output_images[-1].append(aaa)
- output_images[-1].append(prompts[0])
- os.makedirs(f'/content/{aaa}', exist_ok=True)
- for n in trange(n_iter, desc="Sampling", disable=not accelerator.is_main_process):
- with open(f'/content/{aaa}/prompt.txt', 'w') as f:
- f.write(prompts[0])
- if n_iter > 1: seedit += 1
- for cfg in tqdm(cfg_scales, desc="cfg_scales", disable=not accelerator.is_main_process):
- cfg_scale = cfg
- uc = None
- if cfg_scale != 1.0:
- uc = model.get_learned_conditioning(batch_size * [""])
- if isinstance(prompts, tuple):
- prompts = list(prompts)
- #from https://github.com/lstein/stable-diffusion/blob/main/ldm/simplet2i.py
- subprompts,weights = split_weighted_subprompts(prompts[0])
- if len(subprompts) > 1:
- # i dont know if this is correct.. but it works
- c = torch.zeros_like(uc)
- # get total weight for normalizing
- totalWeight = sum(weights)
- # normalize each "sub prompt" and add it
- for i in range(0,len(subprompts)):
- weight = weights[i]
- weight = weight / totalWeight
- c = torch.add(c,model.get_learned_conditioning(subprompts[i]), alpha=weight)
- else: # just standard 1 prompt
- c = model.get_learned_conditioning(prompts)
- torch.manual_seed(rng_seed + seedit) # changes manual seeding procedure
- sigmas = model_wrap.get_sigmas(ddim_steps)
- if init_img == None:
- shape = [opt.C, opt.H // opt.f, opt.W // opt.f]
- x = torch.randn([n_samples, *shape], device=device) * sigmas[0] # for GPU draw
- else:
- noise = torch.randn_like(x0) * sigmas[ddim_steps - t_enc - 1] # for GPU draw
- x = x0 + noise
- sigmas = sigmas[ddim_steps - t_enc - 1:]
- model_wrap_cfg = CFGDenoiser(model_wrap)
- extra_args = {'cond': c, 'uncond': uc, 'cond_scale': cfg_scale}
- samples_ddim = K.sampling.sample_lms(model_wrap_cfg, x, sigmas, extra_args=extra_args, disable=not accelerator.is_main_process)
- x_samples_ddim = model.decode_first_stage(samples_ddim)
- x_samples_ddim = torch.clamp((x_samples_ddim + 1.0) / 2.0, min=0.0, max=1.0)
- x_samples_ddim = accelerator.gather(x_samples_ddim)
- if accelerator.is_main_process and not opt.skip_save:
- for x_sample in x_samples_ddim:
- x_sample = 255. * rearrange(x_sample.cpu().numpy(), 'c h w -> h w c')
- #Image.fromarray(x_sample.astype(np.uint8)).save(os.path.join(sample_path, f"{base_count:05}-{rng_seed + seedit}-{cfg_scale}_{prompt.replace(' ', '_')[:128]}.png"))
- output_images[-1].append(Image.fromarray(x_sample.astype(np.uint8)))
- print(prompt, cfg_scale, rng_seed + seedit)
- #output_images[-1].show() #not working
- #display(output_images[-1])#not working
- ########
- base_count += 1
- if not same_seed: seedit += 1
- toc = time.time()
- gc.collect()
- torch.cuda.empty_cache()
- del sampler
- f = []
- message = ''
- for i in range(len(output_images)):
- aaa = output_images[i][0]
- message+= f'Запрос "{output_images[i][1]}" находится в папке /content/{aaa}/ \n'
- for k in range(2, len(output_images[i])):
- cfg=cfg_scales
- pt = f'/content/{aaa}/{k-2}.jpg'
- if GFPGAN:
- (Image.fromarray(FACE_RESTORATION(output_images[i][k], bg_upsampling, upscale).astype(np.uint8))).save(pt, format = 'JPEG', optimize = True)
- else:
- output_images[i][k].save(pt, format = 'JPEG', optimize = True)
- f.append(pt)
- with Image.open(f[i]) as img:
- print(img.size)
- #files.download(f'/content/waifu-diffusion/outputs/img2img-samples/samples/0.jpg') #not working
- return f, rng_seed, message
- dream_interface = gr.Interface(
- dream,
- inputs=[
- gr.Textbox(label='Текстовый запрос. Поддерживает придание частям запроса веса с помощью ":число " (пробел после числа обязателен). Обычный запрос так же поддерживается.', placeholder="A corgi wearing a top hat as an oil painting.", lines=1), gr.Variable(value=None, visible=False),
- gr.Slider(minimum=1, maximum=200, step=1, label="Шаги диффузии, идеал - 100.", value=50),
- gr.Checkbox(label='Включить PLMS ', value=True),
- gr.Checkbox(label='Сэмплинг с одной точки', value=False),
- gr.Slider(minimum=0.0, maximum=1.0, step=0.01, label="DDIM ETA", value=0.0, visible=False),
- gr.Slider(minimum=1, maximum=50, step=1, label='Сколько раз сгенерировать по запросу (последовательно)', value=1),
- gr.Slider(minimum=1, maximum=8, step=1, label='Сколько картинок за раз (одновременно). ЖРЕТ МНОГО ПАМЯТИ', value=1),
- gr.Textbox(placeholder="7.0", label='Classifier Free Guidance Scales, через пробел либо только одна. Если больше одной, сэмплит один и тот же запрос с разными cfg. Обязательно число с точкой, типа 7.0 или 15.0', lines=1, value=9.0),
- gr.Slider(minimum=0.0, maximum=1.0, step=0.01, label='Процент шагов, указанных выше чтобы пройтись по картинке. Моюно считать "силой"', value=0.75, visible=False),
- gr.Number(label='Сид', value=-1),
- gr.Slider(minimum=64, maximum=2048, step=64, label="Высота", value=512),
- gr.Slider(minimum=64, maximum=2048, step=64, label="Ширина", value=512),
- gr.Checkbox(label='Один и тот же сид каждый раз. Для того чтобы генерировать одно и тоже с одинаковым запросом.', value=False),
- gr.Checkbox(label='GFPGAN, восстанавливает лица, может апскейлить. Все настройки ниже к нему.', value=True),
- gr.Checkbox(label='Улучшение фона', value=True),
- gr.Slider(minimum=1, maximum=8, step=1, label="Апскейлинг. 1 значит не используется.", value=2)
- ],
- outputs=[
- gr.Gallery(),
- gr.Number(label='Seed'),
- gr.Textbox(label='Чтобы скачать папку с результатами, открой в левой части колаба файлы и скачай указанные папки')
- ],
- title="Stable Diffusion 1.4 текст в картинку",
- description=" создай картинку из текста, анон, K-LMS используется по умолчанию",
- )
- # prompt, init_img, ddim_steps, plms, ddim_eta, n_iter, n_samples, cfg_scale, denoising_strength, seed
- img2img_interface = gr.Interface(
- dream,
- inputs=[
- gr.Textbox(label='Текстовый запрос. Поддерживает придание частям запроса веса с помощью ":число " (пробел после числа обязателен). Обычный запрос так же поддерживается.', placeholder="A corgi wearing a top hat as an oil painting.", lines=1), gr.Image(value="https://raw.githubusercontent.com/CompVis/stable-diffusion/main/assets/stable-samples/img2img/sketch-mountains-input.jpg", source="upload", interactive=True, type="pil"),
- gr.Slider(minimum=1, maximum=200, step=1, label="Шаги диффузии, идеал - 100.", value=100),
- gr.Checkbox(label='Включить PLMS ', value=True, vivible=False),
- gr.Checkbox(label='Сэмплинг с одной точки', value=False, vivible=False),
- gr.Slider(minimum=0.0, maximum=1.0, step=0.01, label="DDIM ETA", value=0.0, visible=False),
- gr.Slider(minimum=1, maximum=50, step=1, label='Сколько раз сгенерировать по запросу (последовательно)', value=1),
- gr.Slider(minimum=1, maximum=8, step=1, label='Сколько картинок за раз (одновременно). ЖРЕТ МНОГО ПАМЯТИ', value=1),
- gr.Textbox(placeholder="7.0", label='Classifier Free Guidance Scales, через пробел либо только одна. Если больше одной, сэмплит один и тот же запрос с разными cfg. Обязательно число с точкой, типа 7.0 или 15.0', lines=1, value=9.0),
- gr.Slider(minimum=0.0, maximum=1.0, step=0.01, label='Процент шагов, указанных выше чтобы пройтись по картинке. Моюно считать "силой"', value=0.75),
- gr.Number(label='Сид', value=-1),
- gr.Slider(minimum=64, maximum=2048, step=64, label="Resize Height", value=512),
- gr.Slider(minimum=64, maximum=2048, step=64, label="Resize Width", value=512),
- gr.Checkbox(label='Один и тот же сид каждый раз. Для того чтобы генерировать одно и тоже с одинаковым запросом.', value=False),
- gr.Checkbox(label='GFPGAN, восстанавливает лица, может апскейлить. Все настройки ниже к нему.', value=True),
- gr.Checkbox(label='Улучшение фона', value=True),
- gr.Slider(minimum=1, maximum=8, step=1, label="Апскейлинг. 1 значит не используется.", value=2)
- ],
- outputs=[
- gr.Gallery(),
- gr.Number(label='Seed'),
- gr.Textbox(label='Чтобы скачать папку с результатами, открой в левой части колаба файлы и скачай указанные папки')
- ],
- title="Stable Diffusion Image-to-Image",
- description="генерация изображения из изображения",
- )
- ctrbbl_interface = gr.Interface(
- dream,
- inputs=[
- gr.Textbox(label='Текстовый запрос. Поддерживает придание частям запроса веса с помощью ":число " (пробел после числа обязателен). Обычный запрос так же поддерживается.', placeholder="A corgi wearing a top hat as an oil painting.", lines=1), gr.Image(value="https://raw.githubusercontent.com/CompVis/stable-diffusion/main/assets/stable-samples/img2img/sketch-mountains-input.jpg", source="upload", interactive=True, type="pil"),
- gr.Slider(minimum=1, maximum=200, step=1, label="Шаги диффузии, идеал - 100.", value=100),
- gr.Checkbox(label='Включить PLMS ', value=True, vivible=False),
- gr.Checkbox(label='Сэмплинг с одной точки', value=False, vivible=False),
- gr.Slider(minimum=0.0, maximum=1.0, step=0.01, label="DDIM ETA", value=0.0, visible=False),
- gr.Slider(minimum=1, maximum=50, step=1, label='Сколько раз сгенерировать по запросу (последовательно)', value=1),
- gr.Slider(minimum=1, maximum=8, step=1, label='Сколько картинок за раз (одновременно). ЖРЕТ МНОГО ПАМЯТИ', value=1),
- gr.Textbox(placeholder="7.0", label='Classifier Free Guidance Scales, через пробел либо только одна. Если больше одной, сэмплит один и тот же запрос с разными cfg. Обязательно число с точкой, типа 7.0 или 15.0', lines=1, value=9.0),
- gr.Slider(minimum=0.0, maximum=1.0, step=0.01, label='Процент шагов, указанных выше чтобы пройтись по картинке. Моюно считать "силой"', value=0.75),
- gr.Number(label='Сид', value=-1),
- gr.Slider(minimum=64, maximum=2048, step=64, label="Resize Height", value=512),
- gr.Slider(minimum=64, maximum=2048, step=64, label="Resize Width", value=512),
- gr.Checkbox(label='Один и тот же сид каждый раз. Для того чтобы генерировать одно и тоже с одинаковым запросом.', value=False),
- gr.Checkbox(label='GFPGAN, восстанавливает лица, может апскейлить. Все настройки ниже к нему.', value=True),
- gr.Checkbox(label='Улучшение фона', value=True),
- gr.Slider(minimum=1, maximum=8, step=1, label="Апскейлинг. 1 значит не используется.", value=2)
- ],
- outputs=[
- gr.Gallery(),
- gr.Number(label='Seed'),
- gr.Textbox(label='Чтобы скачать папку с результатами, открой в левой части колаба файлы и скачай указанные папки')
- ],
- title="Stable Diffusion Imagewegwsg-to-Image",
- description="генерация изображения из изображения",
- )
- demo = gr.TabbedInterface(interface_list=[dream_interface, img2img_interface, ctrbbl_interface], tab_names=["Dream", "Image Translation", "Dev inference"])
- demo.launch(share=True)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement