Baptlem commited on
Commit
ccf1a03
1 Parent(s): 7b66f42

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -59,7 +59,7 @@ pipe, params = load_sb_pipe(controlnet_version)
59
  # pipe.enable_xformers_memory_efficient_attention()
60
  # pipe.enable_model_cpu_offload()
61
  # pipe.enable_attention_slicing()
62
-
63
  def pipe_inference(
64
  image,
65
  prompt,
@@ -71,7 +71,7 @@ def pipe_inference(
71
  seed=0,
72
  negative_prompt="",
73
  ):
74
-
75
  if not isinstance(image, np.ndarray):
76
  image = np.array(image)
77
 
 
59
  # pipe.enable_xformers_memory_efficient_attention()
60
  # pipe.enable_model_cpu_offload()
61
  # pipe.enable_attention_slicing()
62
+ print("Loaded models...")
63
  def pipe_inference(
64
  image,
65
  prompt,
 
71
  seed=0,
72
  negative_prompt="",
73
  ):
74
+ print("Entered pipe...")
75
  if not isinstance(image, np.ndarray):
76
  image = np.array(image)
77