Zeyu Chen
Zeyu Chen
Add YOLO-World forward and inference some examples of forward alignment: 1. bus.jpg **torch commands**: python image_demo.py configs/pretrain/yolo_world_v2_x_vlpan_bn_2e-3_100e_4x8gpus_obj365v1_goldg_train_lvis_minival.py /home/onion/workspace/code/PaddleMIX/ppdiffusers/examples/YOLO-World/pretrain/yolo_world_v2_x_obj365v1_goldg_cc3mlite_pretrain-8698fbfa.pth /home/onion/ bus.jpg 'person,bus' --topk 100 --threshold 0.001 --output-dir /home/onion/out/ **paddle commands**: python...
### 问题确认 Search before asking - [X] 我已经查询[历史issue](https://github.com/PaddlePaddle/PaddleDetection/issues),没有类似需求。I have searched the [issues](https://github.com/PaddlePaddle/PaddleDetection/issues) and found no similar feature requests. ### 需求描述 Feature Description 1. 任务目标 基于PaddleDetection进行二次开发。 2. 需求场景 我正在基于PaddleDetection复现YOLO-World模型并打算将其贡献至PaddleMIX仓库(将PaddleDetection作为一个包使用),我使用了PaddleDetection提供的register注册自定义的网络模块,PaddleDetection没有提供类似mmengine中custom_imports在导入配置文件阶段导入包的功能,PaddleDection中现有新增模型算法的方法是将组件放在指定目录下(modeling/architecture等),而在我的当前使用场景下显然不适用,因此我需要手动import自定义的网络模块来完成注册,这显得不太优雅(非常奇怪)。 3. 功能描述...