Fabrice-TIERCELIN
commited on
Commit
•
f7a070c
1
Parent(s):
0b31488
Cube root
Browse files
app.py
CHANGED
@@ -424,7 +424,7 @@ def restore_on_gpu(
|
|
424 |
print("edm_steps: " + str(edm_steps))
|
425 |
print("num_samples: " + str(num_samples))
|
426 |
print("downscale: " + str(downscale))
|
427 |
-
print("Estimated minutes: " + f'{((result_width * result_height * input_width * input_height * edm_steps * (num_samples**(1/2)))**(1/
|
428 |
except Exception as e:
|
429 |
print('Exception of Estimation')
|
430 |
|
|
|
424 |
print("edm_steps: " + str(edm_steps))
|
425 |
print("num_samples: " + str(num_samples))
|
426 |
print("downscale: " + str(downscale))
|
427 |
+
print("Estimated minutes: " + f'{((result_width * result_height * input_width * input_height * edm_steps * (num_samples**(1/2)))**(1/3)) / 5000000:,}')
|
428 |
except Exception as e:
|
429 |
print('Exception of Estimation')
|
430 |
|