-
I'm encountering a problem with installing: (followed all the retard instructions like a good retard)
and installation loops |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 24 replies
-
The message is telling you that you ran out of VRAM. To run Standard-Diffusion on low VRAM cards you currently have to enable one of the optimized modes. The standard optimized mode lowers VRAM a lot but also massively affects speed. The optimize-turbo mode uses a bit more VRAM but runs with little speed penalty. To enable the optimized mode open the "relauncher.py" file and change: optimized = False To: optimized = True To enable optimized-turbo do the same thing but for the "optimized_turbo" option. Though only one of them should be enabled (set to True) at a time. With only 4GB of VRAM (based on the error message) you will likely have to use the standard optimized mode for now, but there is a PR open right now that will lower VRAM requirements a bit further once merged without a speed penalty. And another that should lower it even further but with a bit of a speed penalty. So you might be able to switch to optimized-turbo in the near future |
Beta Was this translation helpful? Give feedback.
-
Have you tried the Doggettx optimization? Item 1 in this list: https://gist.github.com/mchaker/e0cf180db6849fa03696293b3fc8f485 |
Beta Was this translation helpful? Give feedback.
The message is telling you that you ran out of VRAM. To run Standard-Diffusion on low VRAM cards you currently have to enable one of the optimized modes. The standard optimized mode lowers VRAM a lot but also massively affects speed. The optimize-turbo mode uses a bit more VRAM but runs with little speed penalty.
To enable the optimized mode open the "relauncher.py" file and change:
To:
To enable optimized-turbo do the same thing but for the "optimized_turbo" option. Though only one of them should be enabled (set to True) at a time.
With only 4GB of VRAM (based on the error message) you will likely have to use the standard optimized mode for now, but the…