From 0a5305f364e3ece48a954826a5a91ca84345f5f1 Mon Sep 17 00:00:00 2001 From: nnikniL <1063373337@qq.com> Date: Mon, 28 Oct 2024 19:02:25 +0800 Subject: [PATCH] fix ModuleNotFoundError fix the ModuleNotFoundError: No module named 'yolox.layers.fast_cocoeval' --- yolox/layers/fast_coco_eval_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yolox/layers/fast_coco_eval_api.py b/yolox/layers/fast_coco_eval_api.py index 5f3aeb551..31b5aaa5a 100644 --- a/yolox/layers/fast_coco_eval_api.py +++ b/yolox/layers/fast_coco_eval_api.py @@ -11,7 +11,7 @@ import numpy as np from pycocotools.cocoeval import COCOeval -from .jit_ops import FastCOCOEvalOp +from jit_ops import FastCOCOEvalOp class COCOeval_opt(COCOeval):