yeq6x commited on
Commit
2a21dfe
·
1 Parent(s): ea68a6a

load_model

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -14,14 +14,16 @@ pipe = None
14
  device = "cuda" if torch.cuda.is_available() else "cpu"
15
 
16
  def load_model():
17
- global pipe
18
  pipe = StableDiffusionXLControlNetPipeline.from_pretrained(
19
  "yeq6x/animagine_position_map",
20
  controlnet=ControlNetModel.from_pretrained("yeq6x/Image2PositionColor_v3"),
21
  ).to(device)
22
  pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
23
 
24
- load_model()
 
 
25
 
26
  def convert_pil_to_opencv(pil_image):
27
  return np.array(pil_image)
@@ -137,6 +139,7 @@ def outpaint_image(image):
137
 
138
  @spaces.GPU
139
  def predict_image(cond_image, prompt, negative_prompt):
 
140
  generator = torch.Generator()
141
  generator.manual_seed(random.randint(0, 2147483647))
142
 
 
14
  device = "cuda" if torch.cuda.is_available() else "cpu"
15
 
16
  def load_model():
17
+ global device
18
  pipe = StableDiffusionXLControlNetPipeline.from_pretrained(
19
  "yeq6x/animagine_position_map",
20
  controlnet=ControlNetModel.from_pretrained("yeq6x/Image2PositionColor_v3"),
21
  ).to(device)
22
  pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
23
 
24
+ return pipe
25
+
26
+ pipe = load_model()
27
 
28
  def convert_pil_to_opencv(pil_image):
29
  return np.array(pil_image)
 
139
 
140
  @spaces.GPU
141
  def predict_image(cond_image, prompt, negative_prompt):
142
+ global pipe
143
  generator = torch.Generator()
144
  generator.manual_seed(random.randint(0, 2147483647))
145