Spaces:
Running
on
Zero
Running
on
Zero
File size: 644 Bytes
9b33fca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
"""Vis4D is a modular library for 4D scene understanding.
It contains common operators and models, data pipelines and training recipes
for a number of contemporary methods and provides a compositional framework
for further research and development of 4D Vision algorithms.
"""
import logging
__version__ = "1.0.0"
_root_logger = logging.getLogger()
_logger = logging.getLogger(__name__)
_logger.setLevel(logging.INFO)
# if root logger has handlers, propagate messages up and let root logger
# process them
if not _root_logger.hasHandlers(): # pragma: no cover
_logger.addHandler(logging.StreamHandler())
_logger.propagate = False
|