| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- # Copyright (c) 2024 PaddlePaddle Authors. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- from os import PathLike
- from pathlib import Path
- from typing import Tuple, TypedDict, Union
- from ...constants import MODEL_FILE_PREFIX
- class ModelPaths(TypedDict, total=False):
- paddle: Tuple[Path, Path]
- onnx: Path
- om: Path
- def get_model_paths(
- model_dir: Union[str, PathLike],
- model_file_prefix: str = MODEL_FILE_PREFIX,
- ) -> ModelPaths:
- model_dir = Path(model_dir)
- model_paths: ModelPaths = {}
- pd_model_path = None
- if (model_dir / f"{model_file_prefix}.json").exists():
- pd_model_path = model_dir / f"{model_file_prefix}.json"
- elif (model_dir / f"{model_file_prefix}.pdmodel").exists():
- pd_model_path = model_dir / f"{model_file_prefix}.pdmodel"
- if pd_model_path and (model_dir / f"{model_file_prefix}.pdiparams").exists():
- model_paths["paddle"] = (
- pd_model_path,
- model_dir / f"{model_file_prefix}.pdiparams",
- )
- if (model_dir / f"{model_file_prefix}.onnx").exists():
- model_paths["onnx"] = model_dir / f"{model_file_prefix}.onnx"
- if (model_dir / f"{model_file_prefix}.om").exists():
- model_paths["om"] = model_dir / f"{model_file_prefix}.om"
- return model_paths
|