MCPcopy Create free account
hub / github.com/chenfei-wu/TaskMatrix / __init__

Method __init__

visual_chatgpt.py:402–416  ·  view source on GitHub ↗
(self, device)

Source from the content-addressed store, hash-verified

400
401class 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 "

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected