Alexandros Popov
commited on
Commit
·
c049350
1
Parent(s):
f0a4807
removed prints.
Browse files
judges.py
CHANGED
|
@@ -142,7 +142,6 @@ def critic(new_image_path: str, original_image_path: str, user_prompt: str, list
|
|
| 142 |
"""
|
| 143 |
|
| 144 |
path_to_concat = concatenate_images_side_by_side(original_image_path, new_image_path)
|
| 145 |
-
print(path_to_concat)
|
| 146 |
|
| 147 |
# iterate each time between the ops and the critic
|
| 148 |
|
|
@@ -160,7 +159,6 @@ def critic(new_image_path: str, original_image_path: str, user_prompt: str, list
|
|
| 160 |
"You must not invent new methods or tools, only use the ones provided.\n"
|
| 161 |
)
|
| 162 |
|
| 163 |
-
print(user_prompt)
|
| 164 |
response = call_to_llm(
|
| 165 |
path_to_concat,
|
| 166 |
model="google/gemma-3-27b-it",
|
|
|
|
| 142 |
"""
|
| 143 |
|
| 144 |
path_to_concat = concatenate_images_side_by_side(original_image_path, new_image_path)
|
|
|
|
| 145 |
|
| 146 |
# iterate each time between the ops and the critic
|
| 147 |
|
|
|
|
| 159 |
"You must not invent new methods or tools, only use the ones provided.\n"
|
| 160 |
)
|
| 161 |
|
|
|
|
| 162 |
response = call_to_llm(
|
| 163 |
path_to_concat,
|
| 164 |
model="google/gemma-3-27b-it",
|