Removed filename logging
Browse files- Logging filename might be too invasive for a huggingface space.
app.py
CHANGED
|
@@ -28,7 +28,7 @@ def inference(filepaths, is_gray, res_percentage, input_quality):
|
|
| 28 |
|
| 29 |
for filepath, *_ in filepaths:
|
| 30 |
filename = os.path.basename(filepath)
|
| 31 |
-
print("Processing
|
| 32 |
input_img = np.array(Image.open(filepath).convert("RGB"))
|
| 33 |
|
| 34 |
print("Datetime: ", datetime.datetime.utcnow())
|
|
|
|
| 28 |
|
| 29 |
for filepath, *_ in filepaths:
|
| 30 |
filename = os.path.basename(filepath)
|
| 31 |
+
print("Processing...")
|
| 32 |
input_img = np.array(Image.open(filepath).convert("RGB"))
|
| 33 |
|
| 34 |
print("Datetime: ", datetime.datetime.utcnow())
|