install SDXL "fixed" VAE

This commit is contained in:
Lincoln Stein
2023-07-26 23:06:27 -04:00
parent 0d344872f1
commit 9c4acb9d3f
4 changed files with 31 additions and 9 deletions

11
scripts/probe-model.py Executable file
View File

@ -0,0 +1,11 @@
#!/bin/env python
import sys
from pathlib import Path
from invokeai.backend.model_management.model_probe import ModelProbe
info = ModelProbe().probe(Path(sys.argv[1]))
print(info)