Spaces:
Runtime error
Runtime error
File size: 385 Bytes
0b7b08a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/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
|