Problem in adding dilated convolution #37
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi
The AlexeyAB/darknet repository, supports dilated convolution. I tried to add the dilation support to tkDNN but it results in error.
Changes can be seen in my fork here.
This is the output of a test program (
test_yolo3_tiny_dilation) created based ontest_yolo3tiny, using this cfg file:Any help?
Have you tried without tensorrt? Does it work?
Enable tensorrt debug to get more info on the reason why tensorrt stopped:
cmake .. -DDEBUG=TrueIn Conv2d.cpp you multiply padding*dilation, maybe you should do the same in NetworkRT
Thank you Francesco.
No, I only tested with tensorrt.
Yes. You are probably right.
I will check the above with
DEBUGflag and report the results.This solved the problem. Thanks for your great help.