Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-08-26 | add support acl batch normal,direct conv, local connect, concat layers | honggui | 22 | -0/+0 | |
2017-06-02 | 1. Porting Caffe onto ARM Compute Library. | Yao Honggui | 2 | -0/+1092 | |
2. The release version is 0.2.0 | |||||
2017-01-18 | Merge pull request #5121 from yrevar/patch-2 | Evan Shelhamer | 1 | -1/+1 | |
Join path using "os.path.join" instead of "+" | |||||
2017-01-18 | Fix various documentation typos (#4172) | Adam Browne | 1 | -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-23 | Join path using "os.path.join" instead of "+" | Yagnesh | 1 | -1/+1 | |
(Needless to say it's much clearer, less error prone, and portable) | |||||
2016-12-21 | Fixed a typo | Yagnesh | 1 | -1/+1 | |
2016-11-27 | fix many typos by using codespell | Zhou Mo | 3 | -4/+4 | |
2016-10-05 | fix typo in pascal_multilabel_datalayers.py | Kun Wang | 1 | -3/+3 | |
2016-09-15 | Fixed typos in examples/cpp_classification/readme | Miguel Lloreda | 1 | -2/+2 | |
2016-08-24 | Merge pull request #4589 from sungjunhong/master | Jon Long | 1 | -1/+1 | |
Correct a minor mistake in statements | |||||
2016-08-15 | Fixing Typo In Sigmoid CIFAR-10 Examples | Nitish Keskar | 2 | -2/+2 | |
There was a mismatch between the iterations interval in the comment and the actual code. | |||||
2016-08-14 | Correct a mistake on math notation | Sungjun HONG | 1 | -1/+1 | |
2016-07-13 | Add "set -e" and $@ to example scripts | Luke Yeager | 19 | -18/+39 | |
2016-05-18 | Merge pull request #4059 from crazytan/master | Jon Long | 1 | -0/+0 | |
handle spaces in image file names Thanks @bchu for an earlier implementation. | |||||
2016-05-17 | handle image names with spaces | crazytan | 1 | -0/+0 | |
2016-05-17 | Merge pull request #4070 from crazytan/ipython | Jon Long | 1 | -27/+18 | |
fix problems in net_surgery.ipynb | |||||
2016-05-05 | fix problems in net_surgery.ipynb | crazytan | 1 | -27/+18 | |
2016-04-27 | fixed typo in download script command cpp_classification | Sammy Sidhu | 1 | -1/+1 | |
2016-04-26 | Merge pull request #4033 from HeGaoYuan/master | Jeff Donahue | 1 | -1/+1 | |
there is a very very small mistake in the LeNet MNIST tutorial | |||||
2016-04-23 | Fixed #4029: test the network every 500 iterations, not 1000 iterations | HeGaoYuan | 1 | -1/+1 | |
2016-04-20 | Update MNIST example to use new DB classes | Luke Yeager | 1 | -75/+12 | |
2016-04-20 | Print to stderr for example LMDB code | Luke Yeager | 2 | -0/+4 | |
2016-04-20 | Explicitly point out -weights flag in tutorial | Achal Dave | 1 | -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-02 | minor mistakes removed | Viveka Kulharia | 1 | -2/+2 | |
2016-03-01 | [example] groom multilabel notebook title, order | Evan Shelhamer | 1 | -3/+4 | |
2016-02-29 | Finalized tutorial. Removed asyncronous layer. | Oscar Beijbom | 3 | -583/+478 | |
2016-02-29 | Refactor and improve code style. | Evan Lezar | 3 | -3859/+254 | |
Fix some typos. Correct imports. Refactor data layers. Apply PEP8 formatting. | |||||
2016-02-29 | Added tutorial on how to use python datalayers and multilabel classification. | Oscar Beijbom | 3 | -0/+4525 | |
2016-02-27 | fix flags in #3518 for nvidia-docker | Evan Shelhamer | 1 | -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-27 | Merge pull request #3518 from zalando/feature/docker_images | Evan Shelhamer | 1 | -0/+119 | |
[build] Add docker images for running caffe out-of-the-box (caffe:cpu, caffe:gpu) | |||||
2016-02-27 | Add Dockerfiles for creating Caffe executable images. | Evan Lezar | 1 | -0/+119 | |
These can be used as direct replacements for the Caffe executable. | |||||
2016-02-25 | [examples] switch examples + models to Input layers | Evan Shelhamer | 8 | -59/+58 | |
2016-02-24 | [example] improve brewing logreg notebook | Jeff Donahue | 4 | -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 notebook | Jeff Donahue | 2 | -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 notebook | Jonathan L Long | 2 | -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 notebook | Jonathan L Long | 1 | -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-27 | Merge pull request #2917 from ajkl/patch-2 | Jeff Donahue | 1 | -1/+1 | |
fixing the database param | |||||
2016-01-26 | Update mnist readme.md: scale moved to transform_param | Madan Ram | 1 | -1/+3 | |
2015-12-20 | Replace blobs_lr with lr_mult in readme.md. | Muneyuki Noguchi | 1 | -2/+2 | |
models/finetune_flickr_style/deploy.prototxt uses lr_mult now. | |||||
2015-11-27 | Merge pull request #2693 from AdamStelmaszczyk/patch-1 | Ronghang Hu | 1 | -4/+4 | |
Deprecated OpenCV consts leading to compilation error | |||||
2015-11-27 | Merge pull request #3361 from BonsaiAI/avoid-snprintf | Ronghang Hu | 3 | -18/+14 | |
replace snprintf with a C++98 equivalent | |||||
2015-11-25 | Remove bogus stepearly in MNIST example | Ronghang Hu | 1 | -28/+0 | |
This `examples/lenet/lenet_stepearly_solver.prototxt` is introduced in #190 by mistake, since stepearly is never actually merged. | |||||
2015-11-26 | replace snprintf with a C++98 equivalent | Tea | 3 | -18/+14 | |
2015-10-22 | Merge pull request #3229 from cdoersch/batchnorm2 | Jeff Donahue | 6 | -0/+522 | |
Yet another batch normalization PR | |||||
2015-10-22 | Cleanup batch norm layer, include global stats computation | Carl Doersch | 2 | -69/+25 | |
2015-10-20 | Added batch normalization layer with test and examples | Dmytro Mishkin | 6 | -0/+566 | |
2015-10-19 | Merge pull request #3182 from bchu/tutorial-fix | Evan Shelhamer | 1 | -1/+1 | |
[example] Fix class label index error in tutorial 00. | |||||
2015-10-16 | Update examples and docs | Ronghang Hu | 6 | -6/+6 | |
2015-10-13 | Add pyyaml as a requirement | Akash A | 1 | -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-13 | In 00-classification example, get correct class label index | Brian Chu | 1 | -1/+1 | |