diff --git a/scripts/load_models.py b/scripts/load_models.py new file mode 100644 index 0000000000..e64d0b821d --- /dev/null +++ b/scripts/load_models.py @@ -0,0 +1,12 @@ +#!/usr/bin/env python +# Copyright (c) 2022 Lincoln D. Stein (https://github.com/lstein) +# Before running stable-diffusion on an internet-isolated machine, +# run this script from one with internet connectivity. The +# two machines must share a common .cache directory. + +import warnings +import configure_invokeai + +if __name__ == '__main__': + configure_invokeai.main() +