OpenLenda / yolox /layers /__init__.py
yutyan's picture
Add app
37f5c2f
raw
history blame contribute delete
385 Bytes
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
# Copyright (c) Megvii Inc. All rights reserved.
# import torch first to make jit op work without `ImportError of libc10.so`
import torch # noqa
from .jit_ops import FastCOCOEvalOp, JitOp
try:
from .fast_coco_eval_api import COCOeval_opt
except ImportError: # exception will be raised when users build yolox from source
pass