summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEvan Shelhamer <shelhamer@imaginarynumber.net>2015-08-07 09:23:20 -0700
committerEvan Shelhamer <shelhamer@imaginarynumber.net>2015-08-07 09:23:20 -0700
commitaf4cc27cfc2c5afdce0e12296a9faa7e891de904 (patch)
treeb15ba62c962488a1d7099b3c7009cf4735fe929e /include
parent5986a37c290e3b99ca4e9bce72862aedadd853f9 (diff)
parentf5116a1d2827a5e1490ce047df7835b66e92f99f (diff)
downloadcaffeonacl-af4cc27cfc2c5afdce0e12296a9faa7e891de904.tar.gz
caffeonacl-af4cc27cfc2c5afdce0e12296a9faa7e891de904.tar.bz2
caffeonacl-af4cc27cfc2c5afdce0e12296a9faa7e891de904.zip
Merge pull request #2880 from koki0702/typo
[docs] Fix layer typo
Diffstat (limited to 'include')
-rw-r--r--include/caffe/layer.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/caffe/layer.hpp b/include/caffe/layer.hpp
index e2eba196..0771b6a8 100644
--- a/include/caffe/layer.hpp
+++ b/include/caffe/layer.hpp
@@ -86,7 +86,7 @@ class Layer {
const vector<Blob<Dtype>*>& top) {}
/**
- * @brief Adjust the shapes of top blobs and internal buffers to accomodate
+ * @brief Adjust the shapes of top blobs and internal buffers to accommodate
* the shapes of the bottom blobs.
*
* @param bottom the input blobs, with the requested input shapes
@@ -95,7 +95,7 @@ class Layer {
* This method should reshape top blobs as needed according to the shapes
* of the bottom (input) blobs, as well as reshaping any internal buffers
* and making any other necessary adjustments so that the layer can
- * accomodate the bottom blobs.
+ * accommodate the bottom blobs.
*/
virtual void Reshape(const vector<Blob<Dtype>*>& bottom,
const vector<Blob<Dtype>*>& top) = 0;