violet-2422

Results 23 issues of violet-2422

During the inference process, not removing the auxiliary branch will reduce the inference speed. Where is the main code for removing the auxiliary branch; Additionally, it seems that the code...

博主您好,很欣赏您的这个项目,特征图可视化过程有一些疑惑? 1、为何要reshape为(3.-1)`np.reshape(sub_output, [b, 3, -1, h, w])` 2、为何要在取score的时候只取最后一个维度的索引为4的部分并进行sigmoid再求max?`np.max(sigmoid(sub_output[..., 4]), -1)` 以下是代码部分,[或者您可以点击这里进入原代码部分](https://github.com/bubbliiiing/yolov4-pytorch/blob/fb74a0dfa6328ef0be6481770b4acdc696a00ab9/yolo.py#L302) ```python plt.imshow(image, alpha=1) plt.axis('off') mask = np.zeros((image.size[1], image.size[0])) for sub_output in outputs: sub_output = sub_output.cpu().numpy() b, c, h, w...

请问能提供 onnx int8 量化版本吗?或者一些方法,请指教一二

### Subject of the feature Describe your issue here. ### Problem If the feature requests relates to a problem, please describe the problem you are trying to solve here. ###...

v2

### Problem 开启showActionButtonGroup后如何修改底部按钮样式,我想让它整体居中 ![image](https://github.com/vbenjs/vue-vben-admin/assets/73391269/fa0951d6-389c-4f90-a20e-f3b7e3dd38cc)

v2

### Search before asking - [X] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/ultralytics/ultralytics/discussions) and found no similar questions. ### Question May I ask if YOLO11 is trained from...

question
detect

请问 o2o 和 o2m 这两个任务怎么对齐的? 我看代码里o2o进行了detach(),在计算loss的时候只是相加了一下,o2o 和 o2m 后边的task align都是分离的,o2o 和 o2m 没有交互,这个和论文里说的信息交互如何理解?