Source code for onnx.hub

# SPDX-License-Identifier: Apache-2.0

"""ONNX Model Hub

This implements the python client for the ONNX model hub.
"""
from os.path import join
from urllib.request import urlopen
from urllib.error import HTTPError
import json
import os
import hashlib
from io import BytesIO
from typing import List, Optional, Dict, Any, Tuple, cast, Set, IO
import onnx
import sys

if "ONNX_HOME" in os.environ:
    _ONNX_HUB_DIR = join(os.environ["ONNX_HOME"], "hub")
elif "XDG_CACHE_HOME" in os.environ:
    _ONNX_HUB_DIR = join(os.environ["XDG_CACHE_HOME"], "onnx", "hub")
else:
    _ONNX_HUB_DIR = join(os.path.expanduser("~"), ".cache", "onnx", "hub")


[docs]class ModelInfo(object): """ A class to represent a model's property and metadata in the ONNX Hub. It extracts model name, path, sha, tags, etc. from the passed in raw_model_info dict. Attributes: model: The name of the model. model_path: The path to the model, relative to the model zoo (https://github.com/onnx/models/) repo root. metadata: Additional metadata of the model, such as the size of the model, IO ports, etc. model_sha: The SHA256 digest of the model file. tags: A set of tags associated with the model. opset: The opset version of the model. """ def __init__(self, raw_model_info: Dict[str, Any]) -> None: """ Parameters: raw_model_info: A JSON dict containing the model info. """ self.model = cast(str, raw_model_info["model"]) self.model_path = cast(str, raw_model_info["model_path"]) self.metadata: Dict[str, Any] = cast(Dict[str, Any], raw_model_info["metadata"]) self.model_sha: Optional[str] = None if "model_sha" in self.metadata: self.model_sha = cast(str, self.metadata["model_sha"]) self.tags: Set[str] = set() if "tags" in self.metadata: self.tags = set(cast(List[str], self.metadata["tags"])) self.opset = cast(int, raw_model_info["opset_version"]) self.raw_model_info: Dict[str, Any] = raw_model_info def __str__(self) -> str: return "ModelInfo(model={}, opset={}, path={}, metadata={})".format( self.model, self.opset, self.model_path, self.metadata ) def __repr__(self) -> str: return self.__str__()
def set_dir(new_dir: str) -> None: """ Sets the current ONNX hub cache location :param new_dir: location of new model hub cache """ global _ONNX_HUB_DIR _ONNX_HUB_DIR = new_dir def get_dir() -> str: """ Gets the current ONNX hub cache location :return: The location of the ONNX hub model cache """ return _ONNX_HUB_DIR def _parse_repo_info(repo: str) -> Tuple[str, str, str]: """ Gets the repo owner, name and ref from a repo specification string. """ repo_owner = repo.split("/")[0] repo_name = repo.split("/")[1].split(":")[0] if ":" in repo: repo_ref = repo.split("/")[1].split(":")[1] else: repo_ref = "main" return repo_owner, repo_name, repo_ref def _verify_repo_ref(repo: str) -> bool: """ Verifies whether the given model repo can be trusted. A model repo can be trusted if it matches onnx/models:main. """ repo_owner, repo_name, repo_ref = _parse_repo_info(repo) return (repo_owner == "onnx") and (repo_name == "models") and (repo_ref == "main") def _get_base_url(repo: str, lfs: bool = False) -> str: """ Gets the base github url from a repo specification string :param repo: The location of the model repo in format "user/repo[:branch]". If no branch is found will default to "main" :param lfs: whether the url is for downloading lfs models :return: the base github url for downloading """ repo_owner, repo_name, repo_ref = _parse_repo_info(repo) if lfs: return "https://media.githubusercontent.com/media/{}/{}/{}/".format(repo_owner, repo_name, repo_ref) else: return "https://raw.githubusercontent.com/{}/{}/{}/".format(repo_owner, repo_name, repo_ref) def _download_file(url: str, file_name: str) -> None: """ Downloads the file with specifed file_name from the url :param url: a url of download link :param file_name: a specified file name for the downloaded file """ chunk_size = 16384 # 1024 * 16 with urlopen(url) as response, open(file_name, 'wb') as f: # Loads processively with chuck_size for huge models while True: chunk = response.read(chunk_size) if not chunk: break f.write(chunk)
[docs]def list_models( repo: str = "onnx/models:main", model: Optional[str] = None, tags: Optional[List[str]] = None ) -> List[ModelInfo]: """ Gets the list of model info consistent with a given name and tags :param repo: The location of the model repo in format "user/repo[:branch]". If no branch is found will default to "main" :param model: The name of the model to search for. If `None`, will return all models with matching tags. :param tags: A list of tags to filter models by. If `None`, will return all models with matching name. """ base_url = _get_base_url(repo) manifest_url = base_url + "ONNX_HUB_MANIFEST.json" try: with urlopen(manifest_url) as response: manifest: List[ModelInfo] = [ModelInfo(info) for info in json.load(cast(IO[str], response))] except HTTPError as e: raise AssertionError("Could not find manifest at {}".format(manifest_url), e) # Filter by model name first. matching_models = manifest if model is None else [m for m in manifest if m.model.lower() == model.lower()] # Filter by tags if tags is None: return matching_models else: canonical_tags = {t.lower() for t in tags} matching_info_list: List[ModelInfo] = [] for m in matching_models: model_tags = {t.lower() for t in m.tags} if len(canonical_tags.intersection(model_tags)) > 0: matching_info_list.append(m) return matching_info_list
[docs]def get_model_info(model: str, repo: str = "onnx/models:main", opset: Optional[int] = None) -> ModelInfo: """ Gets the model info matching the given name and opset. :param model: The name of the onnx model in the manifest. This field is case-sensitive :param repo: The location of the model repo in format "user/repo[:branch]". If no branch is found will default to "main" :param opset: The opset of the model to get. The default of `None` will return the model with largest opset. """ matching_models = list_models(repo, model) if not matching_models: raise AssertionError("No models found with name {}".format(model)) if opset is None: selected_models = sorted(matching_models, key=lambda m: -m.opset) else: selected_models = [m for m in matching_models if m.opset == opset] if len(selected_models) == 0: valid_opsets = [m.opset for m in matching_models] raise AssertionError("{} has no version with opset {}. Valid opsets: {}".format(model, opset, valid_opsets)) return selected_models[0]
[docs]def load( model: str, repo: str = "onnx/models:main", opset: Optional[int] = None, force_reload: bool = False, silent: bool = False, ) -> Optional[onnx.ModelProto]: """ Downloads a model by name from the onnx model hub :param model: The name of the onnx model in the manifest. This field is case-sensitive :param repo: The location of the model repo in format "user/repo[:branch]". If no branch is found will default to "main" :param opset: The opset of the model to download. The default of `None` automatically chooses the largest opset :param force_reload: Whether to force the model to re-download even if its already found in the cache :param silent: Whether to suppress the warning message if the repo is not trusted. """ selected_model = get_model_info(model, repo, opset) local_model_path_arr = selected_model.model_path.split("/") if selected_model.model_sha is not None: local_model_path_arr[-1] = "{}_{}".format(selected_model.model_sha, local_model_path_arr[-1]) local_model_path = join(_ONNX_HUB_DIR, os.sep.join(local_model_path_arr)) if force_reload or not os.path.exists(local_model_path): if not _verify_repo_ref(repo) and not silent: msg = ( 'The model repo specification "{}" is not trusted and may' " contain security vulnerabilities. Only continue if you trust this repo." ).format(repo) print(msg, file=sys.stderr) print("Continue?[y/n]") if input().lower() != "y": return None os.makedirs(os.path.dirname(local_model_path), exist_ok=True) lfs_url = _get_base_url(repo, True) print("Downloading {} to local path {}".format(model, local_model_path)) _download_file(lfs_url + selected_model.model_path, local_model_path) else: print("Using cached {} model from {}".format(model, local_model_path)) with open(local_model_path, "rb") as f: model_bytes = f.read() if selected_model.model_sha is not None: downloaded_sha = hashlib.sha256(model_bytes).hexdigest() if not downloaded_sha == selected_model.model_sha: raise AssertionError( ( "The cached model has SHA256 {} while checksum should be {}. " + "The model in the hub may have been updated. Use force_reload to download the model from the model hub." ).format(downloaded_sha, selected_model.model_sha) ) return onnx.load(cast(IO[bytes], BytesIO(model_bytes)))