summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2014-02-26Define split layer (merge trick)Evan Shelhamer1-0/+2
Originally authored by Jeff Donahue, but this commit was needed for historical reasons.
2014-02-26minor cleanup; only get blob_name if neededJeff Donahue1-3/+3
2014-02-26add idempotence testJeff Donahue1-0/+8
2014-02-26add imagenet no split insertion testJeff Donahue1-1/+370
2014-02-26fix split layer insertion bug with in-place layersJeff Donahue2-35/+238
2014-02-26remove unnecessary includeJeff Donahue1-1/+0
2014-02-26eliminate some cruft by relying on std::map default initializationsJeff Donahue1-15/+5
2014-02-26get rid of messy snprintf string concatenationJeff Donahue1-6/+5
2014-02-26get_split_blob_name returns a string to remove some verbosityJeff Donahue1-17/+10
2014-02-26remove redundant add_bottom (immediately cleared and then re-added)Jeff Donahue1-1/+0
2014-02-26add test for layer with two tops that are inputs to multiple layersJeff Donahue1-4/+142
2014-02-26fix comment typoJeff Donahue1-1/+1
2014-02-26remove pointlessly duplicated CheckGradientExhaustive calls (I screwedJeff Donahue1-4/+0
up when merging, I think)
2014-02-26change \" in test_split_layer to ' for readabilityJeff Donahue1-131/+129
2014-02-26allow in place computation of SplitLayer 0th top blobJeff Donahue2-2/+74
2014-02-26give first top split blob same name as bottom blobJeff Donahue2-12/+18
2014-02-26change \n's to less distracting spaces in hard-coded proto stringsJeff Donahue1-253/+253
2014-02-26eliminate redundant code with get_split_blob_name methodJeff Donahue1-12/+15
2014-02-26some cleanupJeff Donahue3-4/+3
2014-02-26add split layer insertion tests; move split insertion code to util fileJeff Donahue3-1/+405
2014-02-26add split layer testsJeff Donahue1-0/+4
2014-02-26add split layer testsJeff Donahue1-0/+105
2014-02-26make split_layer backward obey propagate_downJeff Donahue1-0/+77
2014-02-26Added a test for the tanh layer.Aravindh Mahendran1-0/+102
2014-02-26Added tanh activation function layer.Aravindh Mahendran2-0/+99
2014-02-26Fix error message typo in SoftmaxWithLossLayertabe1-1/+1
2014-02-26Set leveldb options.max_open_files = 100. Fix #13 and #38Sergio Guadarrama1-0/+1
2014-02-17Revert "Merge pull request #114 from jeffdonahue/dags-by-split"Evan Shelhamer5-785/+1
Revert dags-by-split merge because split layers were not quite ready. Sorry for the bug! We are adopting a `master`/`dev` split development model, where new commits and pull requests will be merged to `dev` for testing before integration to `master`. This will keep master clean and stable. This reverts commit d339d242b43ec5bec9dceb657ee0d665d524b1eb, reversing changes made to 55198262d79944fa7382868f7ecd108ed4f238a2.
2014-02-16remove unnecessary includeJeff Donahue1-1/+0
2014-02-16eliminate some cruft by relying on std::map default initializationsJeff Donahue1-15/+5
2014-02-16get rid of messy snprintf string concatenationJeff Donahue1-6/+5
2014-02-16get_split_blob_name returns a string to remove some verbosityJeff Donahue1-17/+10
2014-02-16remove redundant add_bottom (immediately cleared and then re-added)Jeff Donahue1-1/+0
2014-02-16add test for layer with two tops that are inputs to multiple layersJeff Donahue1-4/+142
2014-02-16fix comment typoJeff Donahue1-1/+1
2014-02-15remove pointlessly duplicated CheckGradientExhaustive calls (I screwedJeff Donahue1-4/+0
up when merging, I think)
2014-02-15change \" in test_split_layer to ' for readabilityJeff Donahue1-131/+129
2014-02-15allow in place computation of SplitLayer 0th top blobJeff Donahue2-2/+74
2014-02-15give first top split blob same name as bottom blobJeff Donahue2-12/+18
2014-02-15change \n's to less distracting spaces in hard-coded proto stringsJeff Donahue1-253/+253
2014-02-15eliminate redundant code with get_split_blob_name methodJeff Donahue1-12/+15
2014-02-15some cleanupJeff Donahue3-4/+3
2014-02-15add split layer insertion tests; move split insertion code to util fileJeff Donahue3-67/+401
2014-02-15add split layer testsJeff Donahue1-0/+4
2014-02-15add split layer testsJeff Donahue1-0/+105
2014-02-15make split_layer backward obey propagate_downJeff Donahue1-12/+16
2014-02-15add SplitLayer and Net::AddSplits to transform shared bottom blobs intoJeff Donahue3-1/+146
split layers
2014-02-13fixed copyrightTobias Domhan1-1/+1
2014-02-13sigmoid layer cpu and gpu codeTobias Domhan1-0/+104
2014-02-13added sigmoid layerTobias Domhan2-0/+56