cddb07a176
build container image / cpu (push) Waiting to run
build container image / cuda (push) Waiting to run
build container image / rocm (push) Waiting to run
docs / deploy (push) Blocked by required conditions
docs / changes (push) Waiting to run
docs / check-and-build (push) Blocked by required conditions
frontend tests / frontend-tests (push) Waiting to run
openapi checks / openapi-checks (push) Waiting to run
python tests / py3.12: macos-default (push) Waiting to run
python tests / py3.11: windows-cpu (push) Waiting to run
python tests / py3.12: windows-cpu (push) Waiting to run
python tests / py3.11: linux-cpu (push) Waiting to run
python tests / py3.12: linux-cpu (push) Waiting to run
typegen checks / typegen-checks (push) Waiting to run
uv lock checks / uv-lock-checks (push) Waiting to run
frontend checks / frontend-checks (push) Waiting to run
lfs checks / lfs-check (push) Waiting to run
python checks / python-checks (push) Waiting to run
python tests / py3.11: macos-default (push) Waiting to run
46 lines
1.3 KiB
Python
Executable File
46 lines
1.3 KiB
Python
Executable File
#!/bin/env python
|
|
|
|
"""Little command-line utility for probing a model on disk."""
|
|
|
|
import argparse
|
|
from pathlib import Path
|
|
from typing import get_args
|
|
|
|
from invokeai.backend.model_hash.model_hash import HASHING_ALGORITHMS
|
|
from invokeai.backend.model_manager import InvalidModelConfigException, ModelProbe
|
|
from invokeai.backend.model_manager.configs.factory import ModelConfigFactory
|
|
|
|
algos = ", ".join(set(get_args(HASHING_ALGORITHMS)))
|
|
|
|
parser = argparse.ArgumentParser(description="Probe model type")
|
|
parser.add_argument(
|
|
"model_path",
|
|
type=Path,
|
|
nargs="+",
|
|
)
|
|
parser.add_argument(
|
|
"--hash_algo",
|
|
type=str,
|
|
default="blake3_single",
|
|
help=f"Hashing algorithm to use (default: blake3_single), one of: {algos}",
|
|
)
|
|
args = parser.parse_args()
|
|
|
|
|
|
def classify_with_fallback(path: Path, hash_algo: HASHING_ALGORITHMS):
|
|
try:
|
|
return ModelProbe.probe(path, hash_algo=hash_algo)
|
|
except InvalidModelConfigException:
|
|
return ModelConfigFactory.from_model_on_disk(
|
|
mod=path,
|
|
hash_algo=hash_algo,
|
|
)
|
|
|
|
|
|
for path in args.model_path:
|
|
try:
|
|
config = classify_with_fallback(path, args.hash_algo)
|
|
print(f"{path}:{config.model_dump_json(indent=4)}")
|
|
except InvalidModelConfigException as e:
|
|
print(e)
|