summaryrefslogtreecommitdiff
path: root/src/caffe/test/test_accuracy_layer.cpp
AgeCommit message (Collapse)AuthorFilesLines
2015-12-01dismantle layer headersEvan Shelhamer1-1/+1
No more monolithic includes: split layers into their own headers for modular inclusion and build.
2015-10-21Clean redundant/unnecessary headersKang Kim1-3/+1
2015-09-03Fix AccuracyLayerTest for per-class accuracy.Ronghang Hu1-6/+6
Fix AccuracyLayerTest for per-class accuracy. Previously in #2935, it crashes since the test accuracy is nan (0/0) when a class never appear.
2015-08-23Output accuracies per class.Ran1-0/+107
Fixed case where number of samples in class can be zero. - Fixed ignore_label case, also added a test. - Two other fixes. Fixed lint errors. Small fix.
2015-05-26Make class AccuracyLayerTest derive from CPUDeviceTestFelix Abecassis1-4/+1
2015-03-09AccuracyLayerTest: add tests for ignore_label and spatial axesJeff Donahue1-5/+93
2015-03-03AccuracyLayer generalized to N instance axesJeff Donahue1-2/+8
2014-09-19fix types of (Layer)SetUp, Reshape, Forward, and Backward callsJonathan L Long1-6/+6
Using the type vector<Blob<Dtype*>* for outputs allows modification of the vector itself, while it is only okay to modify the blobs pointed to by the elements of the vector. Switching the types to const vector<Blob<Dtype>*>& makes them more correct.
2014-08-06LICENSE governs the whole project so strip file headersEvan Shelhamer1-2/+0
2014-08-04Fix header alphabetization lint errors.Jeff Donahue1-1/+2
2014-07-20Add more test cases for the accuracy layerKai Li1-25/+81
2014-07-17collect CUDA includes and calls, separate from CPU-only mode, leave outEvan Shelhamer1-3/+0
- collect CUDA includes in device_alternate.hpp - add guards for CUDA code - move GPU code into cu from cpp - make CUDA includes and libraries conditional in Makefile - drop CUDA dependency from travis-ci build
2014-07-14Move test headers to include/.Jeff Donahue1-3/+1
Add a test param to test both CPU and GPU (with both float and double Dtypes).
2014-06-27Comment-fix.Rob Hess1-1/+1
2014-06-27Add unit test for accuracy layer.Rob Hess1-0/+90