platform/upstream/caffe.git
2014-09-03 Evan ShelhamerMerge pull request #973 from shelhamer/tutorial-docs
2014-09-03 Evan Shelhamer[docs] configure doxygen + docs script for docs/doxygen...
2014-09-03 Evan Shelhamerupdate doxygen config to stop warnings
2014-09-03 Evan Shelhamer[docs] suggest the CVPR14 deep learning tutorial for...
2014-09-03 Evan Shelhamer[docs] draft data
2014-09-03 Jeff Donahuewrap up solver.md -- add update info for all solvers...
2014-09-03 Jeff Donahuenet.hpp: Doxygen-format docs
2014-09-03 Jeff Donahuesolver.hpp: add \briefs
2014-09-03 Jeff Donahuesyncedmem.hpp: \brief and todo
2014-09-03 Jeff Donahueblob.hpp: a little Doxygen-style documentation
2014-09-03 Jeff Donahuefiller.hpp: add brief filler descriptions
2014-09-03 Jeff Donahuevision_layers.hpp: Doxygen \brief & TODO stubs.
2014-09-03 Jeff Donahuedata_layers: Doxygen \brief & TODO stubs.
2014-09-03 Jeff Donahuecommon_layers.hpp: Doxygen \brief & TODO stubs.
2014-09-03 Jeff Donahueneuron_layers.hpp: Doxygen-style documentation
2014-09-03 Jeff Donahueloss_layers.hpp: Doxygen-style documentation
2014-09-03 Jeff Donahuelayer.hpp: Doxygen-style documentation
2014-09-03 Jeff Donahue.Doxyfile: don't warn if undocumented (maybe someday...)
2014-09-03 Jeff Donahue.Doxyfile: modify to generate C++ docs, excluding tests
2014-09-03 Jeff Donahue.gitignore doxygen-generated documentation
2014-09-03 Jeff Donahueadd "make {docs,doxygen}" targets to build doxygen...
2014-09-03 Jeff Donahueadd .Doxyfile: the default Doxygen config file from...
2014-09-03 Jeff Donahue[wip] vision layers, start convolution
2014-09-03 Jeff Donahueuse kramdown for markdown syntax; add mathjax
2014-09-03 Evan Shelhamer[docs] add note on Caffe convolution
2014-09-03 Evan Shelhamer[docs] draft tutorial subjects
2014-09-03 Evan Shelhamer[docs] skeleton documentation subjects
2014-09-02 Evan ShelhamerMerge pull request #1025 from mohomran/minor_fix_to_mni...
2014-09-02 Mohamed Omranfixed relative path and prefix for adagrad-optimised...
2014-09-02 Evan ShelhamerMerge pull request #1023 from longjon/unbreak-pycaffe
2014-09-02 Jonathan L... [pycaffe] use _blob_names, _layer_names instead of...
2014-09-02 Jonathan L... [pycaffe] expose Net.blob_names and Net.layer_names
2014-09-02 Jonathan L... [pycaffe] add converter for vector<string> used by...
2014-09-01 Jeff Donahueadd CUDA 6.5 error CUBLAS_STATUS_LICENSE_ERROR to cubla...
2014-09-01 Jeff Donahuerevert tools/train_net.cpp to previous, depecated version
2014-09-01 Jeff DonahueMerge branch 'qipeng-solvers' into dev
2014-09-01 Jeff Donahuemake MNIST autoencoder solvers start from base_lr 0...
2014-09-01 Jeff Donahuemake adagrad/nesterov train scripts follow new "run...
2014-09-01 Jeff DonahueAdd "test-on-train" stage to test accuracy on the train...
2014-09-01 Jeff Donahuemnist_autoencoder: always compute both cross-entropy...
2014-09-01 qipenghot fix for warning
2014-09-01 qipenglint
2014-09-01 qipengRe-added solver switch into the new caffe main excutabl...
2014-09-01 qipenglint
2014-09-01 qipengAdded sanity check for AdaGradSolver; added MNIST examp...
2014-09-01 Jeff DonahueMerge Test{SGD,AdaGrad,Nesterov}Solver; they become...
2014-09-01 Jeff Donahuecleanup caffe.proto
2014-09-01 qipengadded unit test for solvers and fixed solver bugs
2014-09-01 qipengproto conflit, lint, and math_functions (compiler compl...
2014-09-01 qipengfixes after rebase
2014-09-01 qipengAddressed Yangqing's comments
2014-09-01 qipengfixed caffe.proto after a mistaken rebase
2014-09-01 qipengAdded L1 regularization support for the weights
2014-09-01 qipengbugfixes for AdaGrad
2014-09-01 qipengimproved numerical stability for AdaGrad
2014-09-01 qipengfixed solver constructor in train_net.cpp
2014-09-01 qipengconverted pointers to shared_ptr
2014-09-01 qipengrestored vituals in solver.hpp
2014-09-01 qipengSolver switching support & implementation of Nesterov...
2014-09-01 Jeff Donahueuse LMDB in mnist autoencoder examples
2014-09-01 Evan Shelhamermake no GPU error in CPU-only mode a little clearer
2014-09-01 Evan Shelhamerinclude comment on CPU mode fine-tuning for Flickr...
2014-09-01 Evan ShelhamerMerge pull request #1014 from longjon/cleaner-pycaffe
2014-08-31 Evan ShelhamerMerge pull request #1008 from mohomran/mnist_with_lmdb
2014-08-31 Evan ShelhamerMerge pull request #1015 from mohomran/fixing_parse_log...
2014-08-31 Mohamed Omranparse_log.sh adapted to new training log format + fixed...
2014-08-31 Mohamed Omranupdated lenet_train_test.prototxt + minor correction...
2014-08-31 Mohamed Omranminor changes to variable names and error messages...
2014-08-31 Mohamed Omrandata now written to backend in batches
2014-08-31 Mohamed Omranmnist demo now works with lmdb and leveldb (set paramet...
2014-08-31 Jonathan L... [pycaffe] expose Blob.Reshape
2014-08-31 Jonathan L... [pycaffe] remove name property from PyBlob and PyLayer
2014-08-31 Jonathan L... [pycaffe] declare the _caffe module init function
2014-08-31 Jonathan L... [pycaffe] split _caffe into source and header files
2014-08-31 Jonathan L... [pycaffe] make PyBlob a template over Dtype
2014-08-31 Jonathan L... [pycaffe] make PyNet a class, not a struct
2014-08-31 Jonathan L... [pycaffe] use a namespace alias instead of using direct...
2014-08-31 Jonathan L... [pycaffe] live in caffe namespace instead of opening it
2014-08-31 Jonathan L... [pycaffe] use class names of the form Py* instead of...
2014-08-31 Evan Shelhamerremove residual pthread references, but restore in...
2014-08-31 Evan Shelhamerignore leveldb extension: ldb
2014-08-30 Evan ShelhamerMerge pull request #1004 from kloudkl/ignore
2014-08-30 Evan Shelhamerfix up leveldb ignore
2014-08-30 Evan ShelhamerMerge pull request #1010 from qipeng/boost-thread-with...
2014-08-30 Evan ShelhamerMakefile: fix boost::thread linking, drop pthread,...
2014-08-30 Evan Shelhamerfix up renaming
2014-08-30 qipengrenaming && typo fix
2014-08-30 Evan ShelhamerMerge pull request #1012 from shelhamer/pr-policy
2014-08-30 Evan Shelhamer[docs] new PR policy: send master fixes + docs to master
2014-08-30 Jeff Donahuefix data_transformer param_name
2014-08-30 Evan ShelhamerMerge pull request #1011 from YS-L/dev
2014-08-30 qipengxcode compiler complaints (warnings)...
2014-08-30 qipengpatch MacOS NVCC boost::thread issue
2014-08-30 Yung Siang... Fix norm_region param in cifar10 deployment net
2014-08-30 Evan Shelhamerback-merge
2014-08-30 Evan ShelhamerMerge pull request #997 from ozancaglayn/dev
2014-08-30 Ozan Çağlayan[docs] Several documentation fixes
2014-08-30 Evan ShelhamerMerge pull request #1001 from drdan14/homebrew-git...
2014-08-30 Daniel GoldenExplain how to fix homebrew to allow updates after...
2014-08-29 Kai LiIgnore LevelDB files
next