Soften Spandrel model-architecture check to just a warning

This commit is contained in:
Aarni Koskela 2023-12-30 21:05:59 +02:00
parent 16848f950b
commit af050dcaa7
1 changed files with 3 additions and 1 deletions

View File

@ -196,7 +196,9 @@ def load_spandrel_model(
import spandrel
model = spandrel.ModelLoader(device=device).load_from_file(path)
if expected_architecture and model.architecture != expected_architecture:
raise TypeError(f"Model {path} is not a {expected_architecture} model")
logger.warning(
f"Model {path!r} is not a {expected_architecture!r} model (got {model.architecture!r})",
)
if half:
model = model.model.half()
if dtype: