Fix speed test tool (and possibly others); add script to speedtest imagenet#840
Merged
jeffdonahue merged 3 commits intoBVLC:devfrom Aug 2, 2014
Merged
Fix speed test tool (and possibly others); add script to speedtest imagenet#840jeffdonahue merged 3 commits intoBVLC:devfrom
jeffdonahue merged 3 commits intoBVLC:devfrom
Conversation
(currently failing as FilterNet ignores the singleton phase).
current Caffe::phase() unless explicitly specified in the state.
jeffdonahue
added a commit
that referenced
this pull request
Aug 2, 2014
Fix speed test tool (and possibly others); add script to speedtest imagenet
mitmul
pushed a commit
to mitmul/caffe
that referenced
this pull request
Sep 30, 2014
Fix speed test tool (and possibly others); add script to speedtest imagenet
RazvanRanca
pushed a commit
to RazvanRanca/caffe
that referenced
this pull request
Nov 4, 2014
Fix speed test tool (and possibly others); add script to speedtest imagenet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Was broken due to my #734, sorry guys. Basically the FilterNet method ignored the current Caffe singleton phase (
Caffe::phase()) and only looked at the one provided in theNetState(e.g. by the solver before initializing, or explicitly in the net proto), so if you used the speedtest tool or any other with a consolidated train/test net expecting it to work correctly because you'd doneCaffe::set_phase(...), you were disappointed (though it worked fine with the non-consolidated format). This fixes that.