summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrzemysław Dolata <snowball91b@gmail.com>2018-08-21 13:11:30 +0200
committerWook Song <wook16.song@samsung.com>2020-01-23 22:50:51 +0900
commitb8e927ac6fe4f7ada69358879d82e7aebbb4f0f7 (patch)
tree4e6a94d1dab7b0c4d3c4d53abed39ed2764c1ebe
parentd8e9540f7869a03274392247bb82c7b938eb2d9b (diff)
parent32adbab009e823b37c8410fbb40be67b4bc00a19 (diff)
downloadcaffe-b8e927ac6fe4f7ada69358879d82e7aebbb4f0f7.tar.gz
caffe-b8e927ac6fe4f7ada69358879d82e7aebbb4f0f7.tar.bz2
caffe-b8e927ac6fe4f7ada69358879d82e7aebbb4f0f7.zip
Merge pull request #6455 from lengly/patch-1
Fix typo in inner_product_layer.cpp
-rw-r--r--src/caffe/layers/inner_product_layer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/caffe/layers/inner_product_layer.cpp b/src/caffe/layers/inner_product_layer.cpp
index e65349f0..57fdbe1f 100644
--- a/src/caffe/layers/inner_product_layer.cpp
+++ b/src/caffe/layers/inner_product_layer.cpp
@@ -42,7 +42,7 @@ void InnerProductLayer<Dtype>::LayerSetUp(const vector<Blob<Dtype>*>& bottom,
shared_ptr<Filler<Dtype> > weight_filler(GetFiller<Dtype>(
this->layer_param_.inner_product_param().weight_filler()));
weight_filler->Fill(this->blobs_[0].get());
- // If necessary, intiialize and fill the bias term
+ // If necessary, initialize and fill the bias term
if (bias_term_) {
vector<int> bias_shape(1, N_);
this->blobs_[1].reset(new Blob<Dtype>(bias_shape));