We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1ef337 commit d2e327aCopy full SHA for d2e327a
invokeai/backend/install/invokeai_configure.py
@@ -290,9 +290,19 @@ def download_realesrgan():
290
download_with_progress_bar(model["url"], config.models_path / model["dest"], model["description"])
291
292
293
+# ---------------------------------------------
294
+def download_lama():
295
+ logger.info("Installing lama infill model")
296
+ download_with_progress_bar(
297
+ 'https://github.com/Sanster/models/releases/download/add_big_lama/big-lama.pt',
298
+ config.models_path / 'core/misc/lama/lama.pt',
299
+ 'lama infill model'
300
+ )
301
+
302
# ---------------------------------------------
303
def download_support_models():
304
download_realesrgan()
305
+ download_lama()
306
download_conversion_models()
307
308
0 commit comments