1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-29 15:11:58 +00:00

fix typing

This commit is contained in:
mertalev 2024-02-02 23:01:31 -05:00
parent e71523d6ed
commit 2c2cf59f09
No known key found for this signature in database
GPG key ID: 9181CD92C0A1C5E3

View file

@ -12,7 +12,6 @@ from huggingface_hub import snapshot_download
from onnx.shape_inference import infer_shapes
from onnx.tools.update_model_dims import update_inputs_outputs_dims
from typing_extensions import Buffer
import ann.ann
from app.models.constants import STATIC_INPUT_PROVIDERS, SUPPORTED_PROVIDERS
@ -146,7 +145,11 @@ class InferenceModel(ABC):
# check_model gets called in update_inputs_outputs_dims and doesn't work for large models
check_model = onnx.checker.check_model
try:
onnx.checker.check_model = lambda _: None
def check_model_stub(*args: Any, **kwargs: Any) -> None:
pass
onnx.checker.check_model = check_model_stub
updated_model = update_inputs_outputs_dims(inferred, inputs, outputs)
finally:
onnx.checker.check_model = check_model