You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Extractor::extract(int blob_index, Mat& feat) seems not support one input with muti-branch ouput, the cnn architecture is looks like
can I extract both conv5-1 and conv5-2 output which means only run extract(method) once?
thanks.
The text was updated successfully, but these errors were encountered:
there's some smart logic behind each extract method
the first call will do inference from the graph beginning to conv5-1, but keep the intermediate prelu4 blob (in both light mode and non-light mode)
the second call will do inference from prelu4 to conv5-2
no repeated calculation in your graph at all :)
Extractor::extract(int blob_index, Mat& feat) seems not support one input with muti-branch ouput, the cnn architecture is looks like
can I extract both conv5-1 and conv5-2 output which means only run extract(method) once?
thanks.
The text was updated successfully, but these errors were encountered: