File size: 705 Bytes
9d665dd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"""
PRIMA: Boosting Animal Mesh Recovery with Biological Priors and Test-Time Adaptation

Official implementation of the paper:
"PRIMA: Boosting Animal Mesh Recovery with Biological Priors and Test-Time Adaptation"
by Xiaohang Yu, Ti Wang, and Mackenzie Weygandt Mathis
Licensed under a modified MIT license
"""

"""Top-level package for PRIMA.

This package contains models, datasets and utilities for
3D animal pose and shape estimation.
"""

from importlib.metadata import PackageNotFoundError, version


try:  # pragma: no cover - best effort during development
	__version__ = version("prima-animal")
except PackageNotFoundError:  # pragma: no cover
	__version__ = "0.0.0"


__all__ = ["__version__"]