(self, device)
| 400 | |
| 401 | class LineText2Image: |
| 402 | def __init__(self, device): |
| 403 | print(f"Initializing LineText2Image to {device}") |
| 404 | self.torch_dtype = torch.float16 if 'cuda' in device else torch.float32 |
| 405 | self.controlnet = ControlNetModel.from_pretrained("fusing/stable-diffusion-v1-5-controlnet-mlsd", |
| 406 | torch_dtype=self.torch_dtype) |
| 407 | self.pipe = StableDiffusionControlNetPipeline.from_pretrained( |
| 408 | "runwayml/stable-diffusion-v1-5", controlnet=self.controlnet, safety_checker=StableDiffusionSafetyChecker.from_pretrained('CompVis/stable-diffusion-safety-checker'), |
| 409 | torch_dtype=self.torch_dtype |
| 410 | ) |
| 411 | self.pipe.scheduler = UniPCMultistepScheduler.from_config(self.pipe.scheduler.config) |
| 412 | self.pipe.to(device) |
| 413 | self.seed = -1 |
| 414 | self.a_prompt = 'best quality, extremely detailed' |
| 415 | self.n_prompt = 'longbody, lowres, bad anatomy, bad hands, missing fingers, extra digit, ' \ |
| 416 | 'fewer digits, cropped, worst quality, low quality' |
| 417 | |
| 418 | @prompts(name="Generate Image Condition On Line Image", |
| 419 | description="useful when you want to generate a new real image from both the user description " |
nothing calls this directly
no outgoing calls
no test coverage detected