Files
insightface/detection/RetinaFace/rcnn/logger.py
2020-11-06 13:59:21 +08:00

7 lines
113 B
Python

import logging
# set up logger
logging.basicConfig()
logger = logging.getLogger()
logger.setLevel(logging.INFO)