summaryrefslogtreecommitdiff
path: root/examples
AgeCommit message (Collapse)AuthorFilesLines
2017-08-26add support acl batch normal,direct conv, local connect, concat layershonggui22-0/+0
2017-06-021. Porting Caffe onto ARM Compute Library.Yao Honggui2-0/+1092
2. The release version is 0.2.0
2017-01-18Merge pull request #5121 from yrevar/patch-2Evan Shelhamer1-1/+1
Join path using "os.path.join" instead of "+"
2017-01-18Fix various documentation typos (#4172)Adam Browne1-1/+1
* fix typo (standaraized->standardized) * fix typo (convet->convert, etc..) * fix typo (incompartible->incompatible) * fix typo (does't->doesn't) * fix typo (decoded->decode)
2016-12-23Join path using "os.path.join" instead of "+"Yagnesh1-1/+1
(Needless to say it's much clearer, less error prone, and portable)
2016-12-21Fixed a typoYagnesh1-1/+1
2016-11-27fix many typos by using codespellZhou Mo3-4/+4
2016-10-05fix typo in pascal_multilabel_datalayers.pyKun Wang1-3/+3
2016-09-15Fixed typos in examples/cpp_classification/readmeMiguel Lloreda1-2/+2
2016-08-24Merge pull request #4589 from sungjunhong/masterJon Long1-1/+1
Correct a minor mistake in statements
2016-08-15Fixing Typo In Sigmoid CIFAR-10 ExamplesNitish Keskar2-2/+2
There was a mismatch between the iterations interval in the comment and the actual code.
2016-08-14Correct a mistake on math notationSungjun HONG1-1/+1
2016-07-13Add "set -e" and $@ to example scriptsLuke Yeager19-18/+39
2016-05-18Merge pull request #4059 from crazytan/masterJon Long1-0/+0
handle spaces in image file names Thanks @bchu for an earlier implementation.
2016-05-17handle image names with spacescrazytan1-0/+0
2016-05-17Merge pull request #4070 from crazytan/ipythonJon Long1-27/+18
fix problems in net_surgery.ipynb
2016-05-05fix problems in net_surgery.ipynbcrazytan1-27/+18
2016-04-27fixed typo in download script command cpp_classificationSammy Sidhu1-1/+1
2016-04-26Merge pull request #4033 from HeGaoYuan/masterJeff Donahue1-1/+1
there is a very very small mistake in the LeNet MNIST tutorial
2016-04-23Fixed #4029: test the network every 500 iterations, not 1000 iterationsHeGaoYuan1-1/+1
2016-04-20Update MNIST example to use new DB classesLuke Yeager1-75/+12
2016-04-20Print to stderr for example LMDB codeLuke Yeager2-0/+4
2016-04-20Explicitly point out -weights flag in tutorialAchal Dave1-1/+5
The -weights flag is somewhat easy to miss as it's only in one command, but is the crucial thing that anyone searching for 'how to finetune' is looking for. Hopefully this more clearly points out the '-weights' flag, which might otherwise be overlooked in this tutorial.
2016-03-02minor mistakes removedViveka Kulharia1-2/+2
2016-03-01[example] groom multilabel notebook title, orderEvan Shelhamer1-3/+4
2016-02-29Finalized tutorial. Removed asyncronous layer.Oscar Beijbom3-583/+478
2016-02-29Refactor and improve code style.Evan Lezar3-3859/+254
Fix some typos. Correct imports. Refactor data layers. Apply PEP8 formatting.
2016-02-29Added tutorial on how to use python datalayers and multilabel classification.Oscar Beijbom3-0/+4525
2016-02-27fix flags in #3518 for nvidia-dockerEvan Shelhamer1-1/+1
nvidia-docker requires long args with equal sign as of docker 1.10: see https://github.com/BVLC/caffe/pull/3518#issuecomment-189576419
2016-02-27Merge pull request #3518 from zalando/feature/docker_imagesEvan Shelhamer1-0/+119
[build] Add docker images for running caffe out-of-the-box (caffe:cpu, caffe:gpu)
2016-02-27Add Dockerfiles for creating Caffe executable images.Evan Lezar1-0/+119
These can be used as direct replacements for the Caffe executable.
2016-02-25[examples] switch examples + models to Input layersEvan Shelhamer8-59/+58
2016-02-24[example] improve brewing logreg notebookJeff Donahue4-5801/+1164
- create solvers inline through python protobuf - drop manually written solver prototxt - remove ordering prefix, since there is no real sequencing constraint for this example
2016-02-24[example] improve fine-tuning notebookJeff Donahue2-947/+1175
- add headings and text detail - make nets by net spec - define solvers inline through python protobuf - do two-stage fine-tuning (first last layer alone, then end-to-end) - show sample results
2016-02-24[example] improve learning LeNet notebookJonathan L Long2-4297/+389
- add subheadings and list steps for structure - edit text and comments for clarity - switch paths and use chdir for idempotency of scripts [shelhamer] - title accuracy plots, rename ip -> fc to fit common naming, and rename output layer -> score [shelhamer] - add experimentation section [shelhamer]
2016-02-24[example] improve classification notebookJonathan L Long1-12719/+312
- add subheadings and list steps - edit text, add comments, and try to make the code more understandable - add new section for summary and encouragement to try your own image
2016-01-27Merge pull request #2917 from ajkl/patch-2Jeff Donahue1-1/+1
fixing the database param
2016-01-26Update mnist readme.md: scale moved to transform_paramMadan Ram1-1/+3
2015-12-20Replace blobs_lr with lr_mult in readme.md.Muneyuki Noguchi1-2/+2
models/finetune_flickr_style/deploy.prototxt uses lr_mult now.
2015-11-27Merge pull request #2693 from AdamStelmaszczyk/patch-1Ronghang Hu1-4/+4
Deprecated OpenCV consts leading to compilation error
2015-11-27Merge pull request #3361 from BonsaiAI/avoid-snprintfRonghang Hu3-18/+14
replace snprintf with a C++98 equivalent
2015-11-25Remove bogus stepearly in MNIST exampleRonghang Hu1-28/+0
This `examples/lenet/lenet_stepearly_solver.prototxt` is introduced in #190 by mistake, since stepearly is never actually merged.
2015-11-26replace snprintf with a C++98 equivalentTea3-18/+14
2015-10-22Merge pull request #3229 from cdoersch/batchnorm2Jeff Donahue6-0/+522
Yet another batch normalization PR
2015-10-22Cleanup batch norm layer, include global stats computationCarl Doersch2-69/+25
2015-10-20Added batch normalization layer with test and examplesDmytro Mishkin6-0/+566
2015-10-19Merge pull request #3182 from bchu/tutorial-fixEvan Shelhamer1-1/+1
[example] Fix class label index error in tutorial 00.
2015-10-16Update examples and docsRonghang Hu6-6/+6
2015-10-13Add pyyaml as a requirementAkash A1-0/+1
In getting the [web demo](http://caffe.berkeleyvision.org/gathered/examples/web_demo.html) started I get an `ImportError: No module named yaml` error when running `./scripts/download_model_binary.py models/bvlc_reference_caffenet`.
2015-10-13In 00-classification example, get correct class label indexBrian Chu1-1/+1