Spaces:
Runtime error
Runtime error
Test more compression
Browse files- inference.py +1 -1
inference.py
CHANGED
@@ -53,4 +53,4 @@ with torch.no_grad():
|
|
53 |
output = np.transpose(output[[2, 1, 0], :, :], (1, 2, 0))
|
54 |
output = (output * 255.0).round()
|
55 |
print('Finished upscaling, saving image.')
|
56 |
-
cv2.imwrite(output_dir, output, [int(cv2.IMWRITE_PNG_COMPRESSION),
|
|
|
53 |
output = np.transpose(output[[2, 1, 0], :, :], (1, 2, 0))
|
54 |
output = (output * 255.0).round()
|
55 |
print('Finished upscaling, saving image.')
|
56 |
+
cv2.imwrite(output_dir, output, [int(cv2.IMWRITE_PNG_COMPRESSION), 9])
|