Skip to content

Commit

Permalink
feat(scripts): add model type guessing script (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssube committed Mar 18, 2023
1 parent 643717a commit 17e4fd7
Show file tree
Hide file tree
Showing 2 changed files with 115 additions and 0 deletions.
114 changes: 114 additions & 0 deletions api/scripts/model-guess.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
from collections import Counter
from logging import getLogger
from onnx import load_model
from os import path
from safetensors import safe_open
from sys import argv
from typing import Callable, List

import onnx_web
import torch

logger = getLogger(__name__)

CheckFunc = Callable[[str], List[str]]

def check_file_extension(filename: str) -> List[str]:
"""
Check the file extension
"""
_name, ext = path.splitext(filename)
ext = ext.removeprefix(".")

if ext != "":
return [f"format:{ext}"]

return []

def check_file_diffusers(filename: str) -> List[str]:
"""
Check for a diffusers directory with model_index.json
"""
if path.isdir(filename) and path.exists(path.join(filename, "model_index.json")):
return ["model:diffusion"]

return []

def check_parser_safetensor(filename: str) -> List[str]:
"""
Attempt to load as a safetensor
"""
try:
if path.isfile(filename):
# only try to parse files
safe_open(filename, framework="pt")
return ["format:safetensor"]
except Exception as e:
logger.debug("error parsing as safetensor: %s", e)

return []

def check_parser_torch(filename: str) -> List[str]:
"""
Attempt to load as a torch tensor
"""
try:
if path.isfile(filename):
# only try to parse files
torch.load(filename)
return ["format:torch"]
except Exception as e:
logger.debug("error parsing as torch tensor: %s", e)

return []

def check_parser_onnx(filename: str) -> List[str]:
"""
Attempt to load as an ONNX model
"""
try:
if path.isfile(filename):
load_model(filename)
return ["format:onnx"]
except Exception as e:
logger.debug("error parsing as ONNX model: %s", e)

return []

def check_network_lora(filename: str) -> List[str]:
"""
TODO: Check for LoRA keys
"""
return []

def check_network_inversion(filename: str) -> List[str]:
"""
TODO: Check for Textual Inversion keys
"""
return []


ALL_CHECKS: List[CheckFunc] = [
check_file_diffusers,
check_file_extension,
check_network_inversion,
check_network_lora,
check_parser_onnx,
check_parser_safetensor,
check_parser_torch,
]

def check_file(filename: str) -> Counter:
logger.info("checking file: %s", filename)

counts = Counter()
for check in ALL_CHECKS:
logger.info("running check: %s", check.__name__)
counts.update(check(filename))

common = counts.most_common()
logger.info("file %s is most likely: %s", filename, common)

if __name__ == "__main__":
for file in argv[1:]:
check_file(file)
1 change: 1 addition & 0 deletions onnx-web.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
"rocm",
"RRDB",
"runwayml",
"safetensor",
"safetensors",
"scandir",
"scipy",
Expand Down

0 comments on commit 17e4fd7

Please sign in to comment.