Spaces:
Runtime error
Runtime error
ivelin
commited on
Commit
·
a43a5b0
1
Parent(s):
a432919
fix: cleanup
Browse filesSigned-off-by: ivelin <ivelin.eth@gmail.com>
app.py
CHANGED
@@ -57,7 +57,7 @@ def process_refexp(image: Image, prompt: str):
|
|
57 |
print(f"image size: {image.size}")
|
58 |
width, height = image.size
|
59 |
print(f"image width, height: {width, height}")
|
60 |
-
print(f"prompt: {
|
61 |
|
62 |
xmin = math.floor(width*bbox["xmin"])
|
63 |
ymin = math.floor(height*bbox["ymin"])
|
|
|
57 |
print(f"image size: {image.size}")
|
58 |
width, height = image.size
|
59 |
print(f"image width, height: {width, height}")
|
60 |
+
print(f"processed prompt: {prompt}")
|
61 |
|
62 |
xmin = math.floor(width*bbox["xmin"])
|
63 |
ymin = math.floor(height*bbox["ymin"])
|