ENet
ENet copied to clipboard
Does it need optimize?
In ENet Paper, Its speed is faster than other segmentation algorithm. But, The processing time of this code 100ms per an image. Why is it slower than paper? Which part is bottleneck? I just wonder this problem.
Thank you. your code gave the much knowledge to me.
Have a look in the tutorial on how to measure the runtime layer-by-layer.
dropout is slow which takes about half of the time of the whole iteration. Just replace it with caffe dropout, if you want. @chamcham115