ldm from stable diffusion git

This commit is contained in:
lunar
2022-12-02 12:17:31 +00:00
parent dd1050cf82
commit 859080419b
39 changed files with 10839 additions and 0 deletions

0
ldm/data/__init__.py Executable file
View File

24
ldm/data/util.py Executable file
View File

@@ -0,0 +1,24 @@
import torch
from ldm.modules.midas.api import load_midas_transform
class AddMiDaS(object):
def __init__(self, model_type):
super().__init__()
self.transform = load_midas_transform(model_type)
def pt2np(self, x):
x = ((x + 1.0) * .5).detach().cpu().numpy()
return x
def np2pt(self, x):
x = torch.from_numpy(x) * 2 - 1.
return x
def __call__(self, sample):
# sample['jpg'] is tensor hwc in [-1, 1] at this point
x = self.pt2np(sample['jpg'])
x = self.transform({"image": x})["image"]
sample['midas_in'] = x
return sample