-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Concat layer and soffmax layer #15
Comments
Beacause TensorRT only support Concat layer across the channel dimension. It is same for Softmax layer. You can learn more information from tensorRT3.0 document. |
I only need reimplement concat and softmax or another layer? |
Only Softmax layer @quocbh |
@linux-devil you can run it? You can share some experience. Thanks |
你好,我可以理解这句话的意思是当axis=1的时候,我们可以用自带的concat.当axis不等于1的时候,需要自己实现。所以在ssd的priorbox concat的时候,需要用自己实现的层。但是在“mbox_loc”中,axis=1, 按道理来讲,我们可以用tensorRT自带的concat去解析。但是,在实验的时候,我把您prototxt中关于“mbox_loc”的type改为“Concat”,在Plugincomplement中,把和mbox_loc相关的注释掉,代码跑不通,模型解析不了,您知道为什么吗?谢谢。 |
I'm newbie in TensorRT. I want to deploy SSD on Jetson TX2 using tensor RT. I don't understand why reimplement Concat layer in tensor RT. Can you explain for me. Same question for Softmax Layer. And I need reimplement another layer?
The text was updated successfully, but these errors were encountered: