-
TODO:
- [ ] add weights conversion script here - https://github.com/keras-team/keras-hub/tree/master/tools/checkpoint_conversion
- [ ] Verify output with real inputs
- [ ] provide a working colab…
-
#CSPDarkNet
参考来源:
```
https://blog.csdn.net/bule_sky_wait_me/article/details/118547757
```
主要讨论YOLOv4中的backbone(特征提取网络)——CSP-DarkNet,以及其实现的所必需的Mish激活函数,CSP结构和DarkNet。
1. Mish激活函数
激活函数的目的是:提高网…
-
请问一下,CSPDarknet.py文件中的第82行,Resblock(channels=out_channels, hidden_channels=out_channels//2)为什么没有进行num_blocks次
-
Hi Author
I had read your code but i realize shortcut layer don't have performs in your code
I read common config of author who create at
https://github.com/AlexeyAB/darknet/blob/master/cfg/yo…
-
你好,yolox的默认主干网络是CSPDarknet吗?
-
-
您好,我想請教一下,
我在論文中看到您計算每個 stage 的 CSPDarknet 計算量為 whb^2(9/4+3/4+5k/2) (於 4.1. CSP-ized YOLOv4 中提到),
但在 Table 2 的比較圖中是寫 CSPDarknet 計算量為 whb^2(3/4+5k/2),
想請問一下是我哪裡有遺漏的嗎? 謝謝您。
-
作者您好,
yolov3_backbone.py文件本来应该从
https://github.com/yjh0410/ICLab/releases/download/in1k_pretrained/darknet_s_in1k_68.5.pth
当中下载主干网络预训练模型,但是由于项目更新,原先的URL已经失效了,同样情况的还有
v5、v5_af的backbone中
https://gi…
-
@WongKinYiu Hi,
Did you compare `AP` (MS COCO) and `1080ti fps` (rather than BFLOPS) of models ?
* CSPResNeXt50-PANet-SPP-GIoU https://github.com/WongKinYiu/CrossStagePartialNetworks#gpu-real-ti…
-
YOLOV4 use Mish activation function, but in your code ,you use LeakyReLU activation function. Is that OK?