Shengshenlan
Shengshenlan
Thanks for your contribution and we appreciate it a lot. The following instructions would make your pull request more healthy and more easily get feedback. If you do not understand...
The original requirement already exists configs/faster_rcnn/faster-rcnn_r50_fpn_1x_coco.py The new config I added is as follows: configs/faster_rcnn/faster-rcnn_r50_fpn_amp-1x_coco.py configs/faster_rcnn/faster-rcnn_r50_fpn_bounded-iou_1x_coco.py configs/faster_rcnn/faster-rcnn_r50_fpn_ciou_1x_coco.py configs/faster_rcnn/faster-rcnn_r50_fpn_giou_1x_coco.py configs/faster_rcnn/faster_rcnn_r50_fpn_2x_coco.py ## Modification add more new config for faster_rcnn
The 13 and 16 lines of this configuration file. https://github.com/open-mmlab/mmrazor/blob/main/configs/distill/mmdet/cwd/cwd_fpn_frcnn_r101_frcnn_r50_1x_coco.py They all used underscores, but now the main partition configuration file of mmdet uses horizontal lines.
训练产生的错误
## Checklist: 1. 查找[历史相关issue](https://github.com/PaddlePaddle/PaddleX/issues)寻求解答 2. 翻阅[FAQ常见问题汇总和答疑](https://github.com/PaddlePaddle/PaddleX/blob/develop/docs/FAQ/FAQ.md) 3. 确认bug是否在新版本里还未修复 4. 翻阅[PaddleX API文档说明](https://github.com/PaddlePaddle/PaddleX/tree/develop#paddlex-%E4%BD%BF%E7%94%A8%E6%96%87%E6%A1%A3) ## 描述问题 ## 复现 1. 您是否已经正常运行我们提供的[教程](https://github.com/PaddlePaddle/PaddleX/tree/develop/tutorials)? 2. 您是否在教程的基础上修改代码内容?还请您提供运行的代码 ` # 解压文件 !mkdir work/data !unzip -oq data/data115729/VisDrone2019-DET-train.zip -d work/data !unzip...
 torch版本是1.13.1 python版本是3.7
It is a simple middware example. ```python @app.middleware("http") async def add_process_time_header( request: Request, call_next: Callable[[Request], Awaitable[Response]] ) -> Response: start_time = time.time() response = await call_next(request) process_time = time.time() -...