summaryrefslogtreecommitdiff
path: root/examples
AgeCommit message (Collapse)AuthorFilesLines
2015-03-06fix #1506tishibas671-3/+7
2015-02-26Fix siamese ipynb exampleTakuya Narihira1-12/+8
2015-02-19Updated the path for get_ilsvrc_aux.sh to match what is found in the current ↵e31-1/+1
project
2015-02-19Correct 'epochs' to 'iterations'Brandon Amos1-1/+1
See https://github.com/BVLC/caffe/blob/master/models/bvlc_reference_caffenet/solver.prototxt
2015-02-19Merge pull request #1910 from philkr/encodedEvan Shelhamer1-0/+0
add force_encoded_color flag to the data layer and warn about mixed encoding
2015-02-19added a force_encoded_color flag to the data layer. Printing a warning if ↵philkr1-0/+0
images of different channel dimensions are encoded together
2015-02-19Merge pull request #1899 from philkr/project_source_dirEvan Shelhamer1-3/+3
[cmake] CMAKE_SOURCE/BINARY_DIR to PROJECT_SOURCE/BINARY_DIR
2015-02-18[pycaffe] switch examples to TransformerEvan Shelhamer4-279/+369
This is a quick translation of the examples to the caffe.io.Transformer interface. The results are not strictly identical to the earlier implementation! The models now use a mean pixel instead of a mean image for simplicity. The output classifications and detections are preserved but scores may differ. Note: the examples will be rewritten to make use of `caffe.Net` alone since it is the true interface, but not yet.
2015-02-18Changing CMAKE_SOURCE/BINARY_DIR to PROJECT_SOURCE/BINARY_DIRphilkr1-3/+3
2015-02-16improve CMake buildAnatoly Baksheev1-13/+28
2015-02-05Upgrade existing nets using upgrade_net_proto_text toolJeff Donahue14-730/+993
Restore comments afterwards
2015-02-04fixed small bug: output label_file -> label_filenamePannous1-1/+1
2015-01-29Merge pull request #1748 from longjon/db-wrappersEvan Shelhamer1-20/+21
Simple database wrappers
2015-01-25Merge pull request #1632 from 7hil/cifar_lmdbEvan Shelhamer2-4/+8
switch cifar10 example to lmdb
2015-01-25[example] lenet early stopping -> mnist examplesEvan Shelhamer1-0/+0
2015-01-21Back-merge fixes + docsEvan Shelhamer4-46/+34
and other fixes and documentation updates.
2015-01-19use db wrappersJonathan L Long1-20/+21
2015-01-16Merge pull request #1388 from rohitgirdhar/cifar_docu_bugEvan Shelhamer1-4/+4
[docs] run CIFAR10 example from caffe root
2015-01-14set mode, phase, device in pycaffe; fix #1700Evan Shelhamer3-41/+29
Attach mode, phase, and device setters to caffe module itself so that these can be set before making nets. This is needed to properly initialize layers with the right device and phase configuration. Update examples to new usage.
2014-12-29[docs] open release of BVLC models for unrestricted useEvan Shelhamer1-1/+1
See BVLC model license details on the model zoo page.
2014-12-23switch cifar10 example to lmdbPeihao.Huang2-4/+8
2014-12-21Fix init current_stepSergio1-6/+5
2014-12-21Adapt lenet_multistep_solver.prototxt to current solversSergio2-8/+8
2014-12-21Added Multistep, Poly and Sigmoid learning rate decay policiesSergio2-0/+61
Conflicts: include/caffe/solver.hpp src/caffe/proto/caffe.proto src/caffe/solver.cpp
2014-10-31documentation bugRohit1-4/+4
2014-10-17back-mergeSergey Karayev2-16/+15
2014-10-17Fixing finetune_flickr_style model reported accuracy.Sergey Karayev1-3/+3
2014-10-16Fix init current_stepSergio1-6/+5
2014-10-15Adapt lenet_multistep_solver.prototxt to current solversSergio2-8/+8
2014-10-15Merge pull request #190 from sguada/new_lr_policiesSergio Guadarrama2-0/+61
New lr policies, MultiStep and StepEarly
2014-10-15Upgrade compute_image_mean to use gflags, accept list_of_images, and print ↵Sergio1-2/+2
mean_values
2014-10-14Renamed Database interface to Dataset.Kevin James Matzen1-17/+17
2014-10-14Templated the key and value types for the Database interface. The Database ↵Kevin James Matzen1-15/+10
is now responsible for serialization. Refactored the tests so that they reuse the same code for each value type and backend configuration.
2014-10-14Changed Database::buffer_t to Database::key_type and Database::value_typeKevin James Matzen1-4/+4
2014-10-14Updated Database interface to take key and value by const reference for put ↵Kevin James Matzen1-2/+2
and key by const reference for put. Additional copies are made for get and put in the LMDB implementation.
2014-10-14Updated Database interface so that rather than CHECKing for certain ↵Kevin James Matzen1-8/+8
conditions inside open, put, get, and commit, these functions return a bool indicating whether or not the operation was successful or a failure. This means the caller is now responsible for error checking.
2014-10-14Updated extract_features to take a leveldb/lmdb config option.Kevin James Matzen1-1/+1
2014-10-14Switched create_cifar10.sh output from leveldb to lmdb.Kevin James Matzen1-1/+1
2014-10-14Updated cifar10 build script to specify db backend.Kevin James Matzen1-5/+6
2014-10-14Don't autocommit on close for the databases. If they were read-only, then ↵Kevin James Matzen1-27/+32
they might fail.
2014-10-14[examples] fix reference model name for flickr fine-tuningEvan Shelhamer1-2/+2
2014-10-10Added Multistep, Poly and Sigmoid learning rate decay policiesSergio2-0/+61
Conflicts: include/caffe/solver.hpp src/caffe/proto/caffe.proto src/caffe/solver.cpp
2014-10-09[example] re-title LeNet / MNIST heading tooEvan Shelhamer1-1/+1
2014-10-09[example] add LeNet to MNIST title, fix paths to be from rootEvan Shelhamer1-8/+7
2014-10-08[example] fix data script paths for flickr fine-tuningEvan Shelhamer1-2/+2
2014-09-29[examples] adding class names and deploy version of Flickr Style netSergey Karayev1-0/+20
2014-09-24Back-mergeEvan Shelhamer5-15/+15
Fixed param order of cv::Size in cv::resize switch examples to lmdb (except for custom data loaders) fix cifar10 paths so they can be run from caffe root default backend to lmdb for image conversion and mean computation
2014-09-21web demo fix, closes #1002Sergey Karayev1-1/+1
2014-09-21Merge pull request #1128 from shelhamer/default-db-lmdbEvan Shelhamer5-15/+15
default to lmdb for database storage
2014-09-21switch examples to lmdb (except for custom data loaders)Evan Shelhamer5-15/+15