冲突排查

This commit is contained in:
2024-06-21 15:58:22 +08:00
parent 4ce1541675
commit e7267646c0

View File

@@ -29,14 +29,14 @@
# paddle.device.cuda.empty_cache()
import logging.config
from config import photo_review as pr
from config.log import LOGGING_CONFIG
from config.photo_review import RETRY_TIME
from photo_review import photo_review
if __name__ == '__main__':
logging.config.dictConfig(LOGGING_CONFIG)
log = logging.getLogger()
for _ in range(RETRY_TIME + 1):
for _ in range(pr.RETRY_TIME + 1):
log.info("【照片审核关键信息抽取】开始")
photo_review.main()