File size: 409 Bytes
b6c45cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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",
]
|