Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -22,6 +22,7 @@ import cv2
|
|
22 |
import os
|
23 |
import random
|
24 |
import spaces
|
|
|
25 |
|
26 |
def nms(x, t, s):
|
27 |
x = cv2.GaussianBlur(x.astype(np.float32), (0, 0), s)
|
@@ -41,7 +42,7 @@ def nms(x, t, s):
|
|
41 |
return z
|
42 |
|
43 |
|
44 |
-
DESCRIPTION = '''#
|
45 |
sketch to image with SDXL, using [@xinsir](https://huggingface.co/xinsir) [scribble sdxl controlnet](https://huggingface.co/xinsir/controlnet-scribble-sdxl-1.0)
|
46 |
'''
|
47 |
|
|
|
22 |
import os
|
23 |
import random
|
24 |
import spaces
|
25 |
+
from gradio_imageslider import ImageSlider
|
26 |
|
27 |
def nms(x, t, s):
|
28 |
x = cv2.GaussianBlur(x.astype(np.float32), (0, 0), s)
|
|
|
42 |
return z
|
43 |
|
44 |
|
45 |
+
DESCRIPTION = '''# Scribble SDXL ๐๏ธ๐
|
46 |
sketch to image with SDXL, using [@xinsir](https://huggingface.co/xinsir) [scribble sdxl controlnet](https://huggingface.co/xinsir/controlnet-scribble-sdxl-1.0)
|
47 |
'''
|
48 |
|