-
Notifications
You must be signed in to change notification settings - Fork 18.7k
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
Next: 0.999 #429
Merged
Merged
Next: 0.999 #429
Conversation
This file contains 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
Seed Boost RNG with cluster_seedgen by default
Log error strings in the error/status checking macros
Improved matcaffe
build/include dir
include/ don't interfere
Take blob args and give blob returns as single ndarrays instead of lists of arrays. Assign the net blobs and diffs as needed on the python side, which reduces copies and simplifies the C++ side of the wrapper. Thanks @longjon for the suggestion.
...and refer to inputs as inputs and not images since general vectors and matrices are perfectly fine.
Layer definitions and declarations re-organization and documentation
Don't run scripts in the module dir to avoid import collisions between io and caffe.io.
For compositionality and expectations.
Improve python wrapper
* master: bundle presentation in gh-pages for now... fix typo pointed out by @yinxusen note support for non-MKL installation in dev include pretrained snapshot and performance details Document AlexNet model, include download script define AlexNet architecture polished ignore
The release notes or change logs need to be kept in the root directory of the project. |
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.
The next release packages up 400+ commits by 9 authors. Thanks all!
Please upgrade your models! Caffe's proto definition was changed in #208 and #219 for extensibility. The
upgrade_net_proto_binary.bin
andupgrade_net_proto_text.bin
tools are provided to convert current models. Caffe will attempt to automagically upgrade old models when loaded, but doesn't save the changes.Update your Makefile.config! Caffe has a new Makefile and Makefile.config that learned to auto-configure themselves a bit better. Look at the new
Makefile.config.example
and update your configuration accordingly.Layers
Examples/Improvements/Fixes
make runtest
#367...and more. Milestones to 1.0 #165, #208, and #311 are done.
DEPENDENCIES: Caffe's matrix and vector computations can be done with ATLAS, OpenBLAS, or MKL. The hard dependency on MKL is no more!
DEPRECATION: V0 model definitions. While Caffe will try to automagically upgrade old models when loaded, see
tools/upgrade_net_proto*
to make the permanent upgrade since this will be dropped.