Spaces:
Paused
Paused
File size: 204 Bytes
c9ea4f0 |
1 2 3 4 5 6 |
import sys
# this will break any attempt to import xformers which will prevent stability diffusion repo from trying to use it
if "--xformers" not in "".join(sys.argv):
sys.modules["xformers"] = None
|