summaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Expand)AuthorFilesLines
2014-07-25include benchmark.hppYangqing Jia1-3/+3
2014-07-24Merge pull request #776 from Yangqing/sweepYangqing Jia1-0/+4
2014-07-23add gflags dependency to caffe.Yangqing Jia1-0/+4
2014-07-22SliceLayer: post-rebase fixes, cleanup, etc. (some from changesJeff Donahue1-3/+3
2014-07-22Add split dim layerbhack1-0/+38
2014-07-21Merge pull request #752 from Yangqing/sweepJeff Donahue7-19/+13
2014-07-20Merge pull request #742 from longjon/direct-blob-buffersJeff Donahue3-10/+10
2014-07-20Merge pull request #615 from kloudkl/top-k-argmaxJonathan L Long1-0/+1
2014-07-19use Blob directly instead of shared_ptr for WindowDataLayer buffersJonathan L Long1-2/+2
2014-07-19use Blob directly instead of shared_ptr for ImageDataLayer buffersJonathan L Long1-2/+2
2014-07-19use Blob directly instead of shared_ptr for DataLayer buffersJonathan L Long1-2/+2
2014-07-19use Blob directly instead of shared_ptr for DropoutLayer::rand_vec_Jonathan L Long1-1/+1
2014-07-19use Blob directly instead of shared_ptr for PoolingLayer::max_idx_Jonathan L Long1-1/+1
2014-07-19use Blob directly instead of shared_ptr for InnerProductLayer::bias_multiplier_Jonathan L Long1-1/+1
2014-07-19use Blob directly instead of shared_ptr for ConvolutionLayer::bias_multiplier_Jonathan L Long1-1/+1
2014-07-20Move compararing function from common_layers to argmax_layerKai Li1-6/+0
2014-07-20Simplify the top-k argmax layer using std::sortKai Li1-0/+6
2014-07-20Extend the ArgMaxLayer to output top k resultsKai Li1-0/+1
2014-07-18comment in net.hpp to explain subtleties of From/To on DAGsJonathan L Long1-0/+7
2014-07-18add Net::Forward/Backward From/ToJonathan L Long1-0/+6
2014-07-18reapply namespace changeYangqing Jia7-19/+13
2014-07-18lintYangqing Jia1-0/+4
2014-07-17Merge pull request #716 from Yangqing/devJeff Donahue6-13/+11
2014-07-17collect CUDA includes and calls, separate from CPU-only mode, leave outEvan Shelhamer6-118/+138
2014-07-17add guards to drop GPU code in CPU-only modeEvan Shelhamer1-0/+8
2014-07-17stub out GPU layer methods to crash loudly in CPU-only modeEvan Shelhamer2-0/+38
2014-07-16neuron_layers.hpp should not need to include leveldbYangqing Jia1-1/+0
2014-07-16move using statements inside namespace caffe to avoid polluting the whole nam...Yangqing Jia5-12/+11
2014-07-15Use Blobs instead of SyncedMemorys for the bias_multiplier_'s.Jeff Donahue1-2/+2
2014-07-15Add param_propagate_down_ vector to layer, populate according toJeff Donahue1-0/+17
2014-07-14Move test headers to include/.Jeff Donahue2-0/+313
2014-07-10Replace cudaMemcpy with caffe_gpu_memcpy in SyncedMemory per @longjonKai Li1-1/+1
2014-07-07Merge pull request #614 from ronghanghu/rectangular_poolingJeff Donahue1-3/+3
2014-07-05add tests for rectangular pooling regionsRonghang Hu1-1/+1
2014-07-03Update vision_layers.hppRonghang Hu1-3/+3
2014-07-03Merge pull request #555 from shelhamer/uva-memoryEvan Shelhamer3-3/+4
2014-07-03Merge pull request #602 from kloudkl/layers-in-orderJeff Donahue4-334/+356
2014-07-03reduce caffe_copy to instantiations, split off caffe_memcpy for void*Evan Shelhamer1-1/+1
2014-07-03replace all memcpy by caffe_copyEvan Shelhamer2-0/+2
2014-07-03do all caffe_copy() as UVA mem copy, and drop caffe_gpu_copy()Evan Shelhamer1-3/+2
2014-07-03add EqualNumBottomTopBlobs() property for layers; use inJeff Donahue2-2/+12
2014-07-03Organize the loss layers in alphabetical orderKai Li1-103/+103
2014-07-03Arrange the data layers to be in alphabetical orderKai Li1-69/+68
2014-07-03Separate layers relatively independent of images out of vision_layersKai Li2-162/+185
2014-06-27Incorporate top_k param into AccuracyLayer and check it's value.Rob Hess1-0/+2
2014-06-26rename layer -> param mapping for clarityEvan Shelhamer1-1/+1
2014-06-26weight sharingJeff Donahue1-1/+9
2014-06-26force_backward works properly with non-backproppable thingsJeff Donahue2-0/+23
2014-06-26change Backward interface: propagate_down is a vector -- use to fixJeff Donahue6-69/+72
2014-06-26Merge pull request #522 from sguada/accuracy_without_lossEvan Shelhamer2-42/+48