Files
fcb_photo_review/object_detection/core/paths.py
2024-08-20 13:18:45 +08:00

9 lines
167 B
Python

import pkg_resources
_package_name = __name__
def get_file_path(*paths):
path = "/".join(paths)
return pkg_resources.resource_filename(_package_name, path)