| import pathlib | |
| from .models import DPTNet | |
| from .utils import torch_utils # noqa | |
| project_root = str(pathlib.Path(__file__).expanduser().absolute().parent.parent) | |
| __version__ = "0.3.4" | |
| def show_available_models(): | |
| from .utils.hub_utils import MODELS_URLS_HASHTABLE | |
| print(" \n".join(list(MODELS_URLS_HASHTABLE.keys()))) | |
| __all__ = [ | |
| "DPTNet", | |
| "show_available_models", | |
| ] | |