北邮-刘畅

Results 10 comments of 北邮-刘畅

> Dear @duncanriach, > > I'm using TF2.3 on Ubuntu 16.04. > To get deterministic results, I followed your instructions. Please check the attached code that is very simple MNIST...

> DepthwiseConv2D Not yet. Listed below are codes for network copied from [ResNet_TF2](https://github.com/Apm5/ImageNet_ResNet_Tensorflow2.0) ``` category_num = 1000 block_type = {18: 'basic block', 34: 'basic block', 50: 'bottlenect block', 101: 'bottlenect...

请问你解决问题了吗? 求提供 + 1

I have the training code but not all files for training. I haven't reproduce it yet ```python #!/usr/bin/env python # Copyright 2016 Google Inc. # # Licensed under the Apache...

**I changed my code to compute psnr.** > In OpenCV:   PSNR = 10 * log10( range / mse of all 3 channels ) In your codes:   PSNR = Mean( 10...

我觉得不太可能。因为双边网络上采样的部分是用 C++ 写的,里面要 cuda,所以要 CPU 版本只能自己写

> 计算Grad-CAM的时候应该有一点问题,权重是根据梯度计算的,而不是原始特征图 > > ```c++ > data_type *const fea_ptr = delta[b]->data + o * area; > ``` 你好!谢谢指正,本人会抽空看看论文和具体实现,谢谢!

Some extra nms should be done after nms on every class : **In the https://github.com/leviome/yolo_1_pytorch/blob/e18705cbf22034d97e043e5faa22466c129238d5/yolo/decoder.py#L57** ![image](https://user-images.githubusercontent.com/49510831/113998929-1cbe2980-988c-11eb-8112-332b5b96df47.png) And the results are more accurate as listed below: ![result_16](https://user-images.githubusercontent.com/49510831/113999328-86d6ce80-988c-11eb-8aed-04003cef8461.png) ![result_17](https://user-images.githubusercontent.com/49510831/113999336-88a09200-988c-11eb-830a-38c4be7b0c57.png) ![result_18](https://user-images.githubusercontent.com/49510831/113999340-89d1bf00-988c-11eb-87f4-8ee9f50df497.png)