summaryrefslogtreecommitdiff
path: root/src/caffe/layers/data_layer.cpp
AgeCommit message (Expand)AuthorFilesLines
2015-09-17Separate IO dependenciesTea1-1/+2
2015-08-09Add DataReader for parallel training with one DB sessionCyprien Noel1-35/+20
2015-08-09Persistent prefetch threadCyprien Noel1-12/+14
2015-04-08Simplify data_layer reshapes and encodings by letting data_transformer do the...Sergio Guadarrama1-65/+25
2015-03-03DataLayer outputs 1D labelsJeff Donahue1-3/+3
2015-02-24Decoding the datum before feeding it into the reshaping data layerphilkr1-1/+8
2015-02-19Merge pull request #1910 from philkr/encodedEvan Shelhamer1-2/+15
2015-02-19Repeal revert of #1878Evan Shelhamer1-2/+2
2015-02-19added a force_encoded_color flag to the data layer. Printing a warning if ima...philkr1-2/+13
2015-02-19Revert "Merge pull request #1878 from philkr/encoded"Evan Shelhamer1-2/+2
2015-02-17pass phase to transformer through layerEvan Shelhamer1-2/+2
2015-02-16Merge pull request #1878 from philkr/encodedEvan Shelhamer1-2/+2
2015-02-16Cleaning up the encoded flag. Allowing any image (cropped or gray scale) to b...philkr1-2/+2
2015-02-16reshape DATA + IMAGE_DATA for inputs of varying dimensionEvan Shelhamer1-2/+14
2015-02-05Layer type is a stringJeff Donahue1-1/+1
2015-01-19use db wrappersJonathan L Long1-20/+14
2014-10-19include opencv only in .cppMaksim Lapin1-0/+2
2014-10-15Added CPUTimerSergio1-9/+9
2014-10-15Upgrade compute_image_mean to use gflags, accept list_of_images, and print me...Sergio1-2/+2
2014-10-15Change caffe time to do forward/backward and accumulate time per layerSergio1-13/+5
2014-10-15Add root_folder to ImageDataLayerSergio1-8/+17
2014-10-15Add fast code for transform(cv::Mat,Blob)Sergio1-2/+10
2014-10-15Added timers for benchmarkingSergio1-3/+19
2014-10-14Renamed Database interface to Dataset.Kevin James Matzen1-13/+13
2014-10-14Templated the key and value types for the Database interface. The Database i...Kevin James Matzen1-6/+5
2014-10-14The LevelDB iterator/DB deallocation order bug is pretty much fixed by having...Kevin James Matzen1-4/+0
2014-10-14Updated Database interface so that rather than CHECKing for certain condition...Kevin James Matzen1-2/+3
2014-10-14Updated Database interface to use custom KV type rather than std::pair. Remo...Kevin James Matzen1-2/+2
2014-10-14Updated interface to make fewer string copies.Kevin James Matzen1-3/+2
2014-10-14Some cleanup to make travis happy.Kevin James Matzen1-0/+3
2014-10-14Refactored leveldb and lmdb code.Kevin James Matzen1-111/+18
2014-10-13move registration code to corresponding cpp files.Yangqing Jia1-1/+1
2014-10-03Fix calls to Rand() and test_data_layer errorSergio1-4/+0
2014-10-03Remove Datum from WindowDataLayerSergio Guadarrama1-1/+1
2014-10-03Initial cv::Mat transformationSergio1-4/+13
2014-10-03Fixed MemoryDataLayer to make it work with pycaffeSergio Guadarrama1-1/+0
2014-10-03Move data_mean into data_transformer remove datum_* from BaseDataSergio Guadarrama1-6/+2
2014-09-19fix types of (Layer)SetUp, Reshape, Forward, and Backward callsJonathan L Long1-7/+7
2014-09-03Place InternalThreadEntry lower in the {,Image,Window}DataLayer.cppKai Li1-62/+62
2014-09-03Move the rest duplicate codes of the data layers into their base classKai Li1-33/+1
2014-09-03Move transform param one level up in the proto to reduce redundancyKai Li1-3/+3
2014-09-03The BasePrefetchingDataLayer shouldn't join the threadKai Li1-0/+1
2014-09-03Simplify the WindowDataLayer using the base classKai Li1-1/+2
2014-09-03Remove duplicate codes from the ImageDataLayerKai Li1-1/+0
2014-09-03Extract common data layer functionalities out of the DataLayerKai Li1-69/+31
2014-08-30remove residual pthread references, but restore in build for gtestEvan Shelhamer1-1/+1
2014-08-29The return value of WaitForInternalThreadToExit has reversedKai Li1-1/+1
2014-08-29Replace pthread with boost::threadKai Li1-2/+2
2014-08-23fix internal thread interface confusionEvan Shelhamer1-1/+1
2014-08-21Refactor DataLayer using a new DataTransformerTANGUY Arnaud1-88/+10