BinitDOX

Results 44 comments of BinitDOX

The fix was to disable async calls by adding this: ``` os.environ["CUDA_LAUNCH_BLOCKING"] = "1" os.environ["TORCH_USE_CUDA_DSA"] = "1" ``` But it slows down the process a lot, so I removed it....

Fixed by reinitializing the models, instead of a script restart. Let me know if it works.

Woah, how did you manage to run out of 12GB VRAM? I'm using a 6GB GPU, and I have only once encountered this error. The parallel processing param is currently...

> There's a problem with the cache: on `mangadex.org` it stores images, but after a while the image names change and they get downloaded and saved again, thus cluttering up...

For me it just slows down the process a lot, but never run out of memory. Even when I turn off denoise and colorizer, and use only upscaler (making an...

Can be done, make a new python script in same folder as app-stream.py: restarter.py ``` import subprocess import time def run_script(): while True: try: command = process = subprocess.Popen(['python', 'app-stream.py'])...

Instead of replacing the original image src, we can duplicate it, change the src, then set display: none, on the original. This will not render the element at all, solving...

Done the show-original feature, highly optimized, please test and let me know if it's ok.

I really don't think the algorithm is the problem, it's getting colorized for me. The max distance from gray shows 2 in the console logs, much less than the default...