summaryrefslogtreecommitdiff
path: root/python
AgeCommit message (Expand)AuthorFilesLines
2014-09-04removed mention of getting_pretrained_models page and old pathsSergey Karayev2-4/+4
2014-09-01[pycaffe] use _blob_names, _layer_names instead of removed .nameJonathan L Long1-6/+7
2014-09-01[pycaffe] expose Net.blob_names and Net.layer_namesJonathan L Long2-0/+5
2014-09-01[pycaffe] add converter for vector<string> used by _*_namesJonathan L Long1-0/+3
2014-08-31[pycaffe] expose Blob.ReshapeJonathan L Long2-0/+4
2014-08-31[pycaffe] remove name property from PyBlob and PyLayerJonathan L Long2-25/+8
2014-08-31[pycaffe] declare the _caffe module init functionJonathan L Long1-0/+4
2014-08-31[pycaffe] split _caffe into source and header filesJonathan L Long2-259/+277
2014-08-31[pycaffe] make PyBlob a template over DtypeJonathan L Long1-21/+22
2014-08-31[pycaffe] make PyNet a class, not a structJonathan L Long1-4/+8
2014-08-30[pycaffe] use a namespace alias instead of using directives for boost::pythonJonathan L Long1-37/+31
2014-08-30[pycaffe] live in caffe namespace instead of opening itJonathan L Long1-2/+4
2014-08-30[pycaffe] use class names of the form Py* instead of Caffe*Jonathan L Long1-70/+70
2014-08-17cmake build configuration for travis-ciAdam Kosiorek1-1/+1
2014-08-17cmake build systemAdam Kosiorek1-0/+20
2014-08-09default raw_scale in python scripts to ImageNet model valueEvan Shelhamer2-2/+4
2014-08-06LICENSE governs the whole project so strip file headersEvan Shelhamer1-1/+0
2014-08-05drop np.asarray() in favor of declaration (~1.75x speedup)Evan Shelhamer2-8/+16
2014-08-05fix pycaffe context cropping with or without meanEvan Shelhamer1-6/+13
2014-08-05take array in pycaffe `Net.set_mean()` instead of file pathEvan Shelhamer5-17/+25
2014-08-05fix pycaffe input processingEvan Shelhamer7-36/+88
2014-08-05define caffe.Net input preprocessing members by boost::pythonEvan Shelhamer2-23/+27
2014-07-28Merge pull request #733 from longjon/pycaffe-tweaksEvan Shelhamer1-14/+12
2014-07-18pycaffe: test channel_order and input_scale against NoneJonathan L Long1-4/+4
2014-07-18pycaffe: reorder exceptionsJonathan L Long1-4/+4
2014-07-18pycaffe: allow unspecified mean. Fixes #671.Jonathan L Long1-6/+4
2014-07-18pycaffe: expose Forward/Backward From/To as kwargs start and endJonathan L Long2-13/+38
2014-06-12Merge pull request #455 from shelhamer/pycaffe-saveEvan Shelhamer1-1/+9
2014-06-12save from python for net surgeryEvan Shelhamer1-1/+9
2014-06-11Merge pull request #482 from shelhamer/rcnn-detector-exampleEvan Shelhamer2-11/+98
2014-06-11pycaffe: leave grayscale images gray according to argEvan Shelhamer1-3/+8
2014-06-09make selective search proposals with R-CNN configurationEvan Shelhamer1-1/+4
2014-06-09pycaffe Detector crops with surrounding contextEvan Shelhamer2-8/+92
2014-06-09fix old detect.py defaultEvan Shelhamer1-2/+2
2014-05-26caffe.Net preprocessing members belong to object, not classEvan Shelhamer1-6/+7
2014-05-23follow-up on #443 to invert k channels (instead of 3)Evan Shelhamer1-1/+2
2014-05-23Correctly invert the swapping of colour channelsJames Thewlis1-1/+2
2014-05-22fix draw_net python scriptEvan Shelhamer1-2/+2
2014-05-20preprocess single inputs instead of listsEvan Shelhamer3-42/+38
2014-05-20windowed detection in pythonEvan Shelhamer5-462/+262
2014-05-19squash infuriating loop assignment bug in batchingEvan Shelhamer1-1/+1
2014-05-19image classification in pythonEvan Shelhamer5-129/+206
2014-05-19fix padding for the last batchEvan Shelhamer1-3/+4
2014-05-19split drawnet into module code and scriptEvan Shelhamer2-15/+25
2014-05-19add caffe.io submodule for conversions, image loading and resizingEvan Shelhamer3-12/+89
2014-05-19fix python mean subtractionEvan Shelhamer1-7/+9
2014-05-16drop cute names in favor of Net.{pre,de}process() for input formattingEvan Shelhamer1-44/+45
2014-05-16Net.caffeinate() and Net.decaffeinate() format/unformat listsEvan Shelhamer1-41/+46
2014-05-16take blob args as ndarrays and assign on the python sideEvan Shelhamer2-184/+72
2014-05-15resize to input dimensions when formatting in pythonEvan Shelhamer1-0/+7