limbee / NTIRE2017

Torch implementation of "Enhanced Deep Residual Networks for Single Image Super-Resolution"
652 stars 146 forks source link

which forward is better? #6

Closed realbns2008 closed 7 years ago

realbns2008 commented 7 years ago

there are 3 forward function defined in code/utils.lua

chopFoward is much faster then recursiveForward

it takes 30 secs to go through recursiveForward. it only take 1 sec to go through chopFoward.

so does it means the quality of recursiveForward is better than chopForward?

limbee commented 7 years ago

recursiveForward is obsolete and is no longer used because it is inefficient compared to chopForward. Using chopForward alone will give you the results you want.

realbns2008 commented 7 years ago

ok~ thanks :)