forked from BVLC/caffe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request BVLC#421 from sguada/argmax_layer
- Loading branch information
Showing
5 changed files
with
216 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// Copyright 2014 BVLC and contributors. | ||
|
||
#include <vector> | ||
#include <cfloat> | ||
|
||
#include "caffe/layer.hpp" | ||
#include "caffe/vision_layers.hpp" | ||
|
||
|
||
namespace caffe { | ||
|
||
template <typename Dtype> | ||
void ArgMaxLayer<Dtype>::SetUp(const vector<Blob<Dtype>*>& bottom, | ||
vector<Blob<Dtype>*>* top) { | ||
CHECK_EQ(bottom.size(), 1) << "ArgMaxLayer Layer takes 1 input."; | ||
CHECK_EQ(top->size(), 1) << "ArgMaxLayer Layer takes 1 output."; | ||
out_max_val_ = this->layer_param_.argmax_param().out_max_val(); | ||
if (out_max_val_) { | ||
// Produces max_ind and max_val | ||
(*top)[0]->Reshape(bottom[0]->num(), 2, 1, 1); | ||
} else { | ||
// Produces only max_ind | ||
(*top)[0]->Reshape(bottom[0]->num(), 1, 1, 1); | ||
} | ||
} | ||
|
||
template <typename Dtype> | ||
Dtype ArgMaxLayer<Dtype>::Forward_cpu(const vector<Blob<Dtype>*>& bottom, | ||
vector<Blob<Dtype>*>* top) { | ||
const Dtype* bottom_data = bottom[0]->cpu_data(); | ||
Dtype* top_data = (*top)[0]->mutable_cpu_data(); | ||
int num = bottom[0]->num(); | ||
int dim = bottom[0]->count() / bottom[0]->num(); | ||
for (int i = 0; i < num; ++i) { | ||
// Accuracy | ||
Dtype max_val = -FLT_MAX; | ||
int max_ind = 0; | ||
for (int j = 0; j < dim; ++j) { | ||
if (bottom_data[i * dim + j] > max_val) { | ||
max_val = bottom_data[i * dim + j]; | ||
max_ind = j; | ||
} | ||
} | ||
if (out_max_val_) { | ||
top_data[i * 2] = max_ind; | ||
top_data[i * 2 + 1] = max_val; | ||
} else { | ||
top_data[i] = max_ind; | ||
} | ||
} | ||
return Dtype(0); | ||
} | ||
|
||
INSTANTIATE_CLASS(ArgMaxLayer); | ||
|
||
|
||
} // namespace caffe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
// Copyright 2014 BVLC and contributors. | ||
|
||
#include <vector> | ||
|
||
#include "cuda_runtime.h" | ||
#include "gtest/gtest.h" | ||
#include "caffe/blob.hpp" | ||
#include "caffe/common.hpp" | ||
#include "caffe/filler.hpp" | ||
#include "caffe/vision_layers.hpp" | ||
#include "caffe/test/test_gradient_check_util.hpp" | ||
|
||
#include "caffe/test/test_caffe_main.hpp" | ||
|
||
namespace caffe { | ||
|
||
extern cudaDeviceProp CAFFE_TEST_CUDA_PROP; | ||
|
||
template <typename Dtype> | ||
class ArgMaxLayerTest : public ::testing::Test { | ||
protected: | ||
ArgMaxLayerTest() | ||
: blob_bottom_(new Blob<Dtype>(20, 10, 1, 1)), | ||
blob_top_(new Blob<Dtype>()) { | ||
Caffe::set_random_seed(this->seed_); | ||
// fill the values | ||
FillerParameter filler_param; | ||
GaussianFiller<Dtype> filler(filler_param); | ||
filler.Fill(this->blob_bottom_); | ||
blob_bottom_vec_.push_back(blob_bottom_); | ||
blob_top_vec_.push_back(blob_top_); | ||
} | ||
virtual ~ArgMaxLayerTest() { delete blob_bottom_; delete blob_top_; } | ||
Blob<Dtype>* const blob_bottom_; | ||
Blob<Dtype>* const blob_top_; | ||
vector<Blob<Dtype>*> blob_bottom_vec_; | ||
vector<Blob<Dtype>*> blob_top_vec_; | ||
}; | ||
|
||
typedef ::testing::Types<float, double> Dtypes; | ||
TYPED_TEST_CASE(ArgMaxLayerTest, Dtypes); | ||
|
||
|
||
TYPED_TEST(ArgMaxLayerTest, TestSetup) { | ||
LayerParameter layer_param; | ||
ArgMaxLayer<TypeParam> layer(layer_param); | ||
layer.SetUp(this->blob_bottom_vec_, &(this->blob_top_vec_)); | ||
EXPECT_EQ(this->blob_top_->num(), this->blob_bottom_->num()); | ||
EXPECT_EQ(this->blob_top_->channels(), 1); | ||
} | ||
|
||
TYPED_TEST(ArgMaxLayerTest, TestSetupMaxVal) { | ||
LayerParameter layer_param; | ||
ArgMaxParameter* argmax_param = layer_param.mutable_argmax_param(); | ||
argmax_param->set_out_max_val(true); | ||
ArgMaxLayer<TypeParam> layer(layer_param); | ||
layer.SetUp(this->blob_bottom_vec_, &(this->blob_top_vec_)); | ||
EXPECT_EQ(this->blob_top_->num(), this->blob_bottom_->num()); | ||
EXPECT_EQ(this->blob_top_->channels(), 2); | ||
} | ||
|
||
TYPED_TEST(ArgMaxLayerTest, TestCPU) { | ||
LayerParameter layer_param; | ||
Caffe::set_mode(Caffe::CPU); | ||
ArgMaxLayer<TypeParam> layer(layer_param); | ||
layer.SetUp(this->blob_bottom_vec_, &(this->blob_top_vec_)); | ||
layer.Forward(this->blob_bottom_vec_, &(this->blob_top_vec_)); | ||
// Now, check values | ||
const TypeParam* bottom_data = this->blob_bottom_->cpu_data(); | ||
const TypeParam* top_data = this->blob_top_->cpu_data(); | ||
int max_ind; | ||
TypeParam max_val; | ||
int num = this->blob_bottom_->num(); | ||
int dim = this->blob_bottom_->count() / num; | ||
for (int i = 0; i < num; ++i) { | ||
EXPECT_GE(top_data[i], 0); | ||
EXPECT_LE(top_data[i], dim); | ||
max_ind = top_data[i]; | ||
max_val = bottom_data[i * dim + max_ind]; | ||
for (int j = 0; j < dim; ++j) { | ||
EXPECT_LE(bottom_data[i * dim + j], max_val); | ||
} | ||
} | ||
} | ||
|
||
TYPED_TEST(ArgMaxLayerTest, TestCPUMaxVal) { | ||
LayerParameter layer_param; | ||
Caffe::set_mode(Caffe::CPU); | ||
ArgMaxParameter* argmax_param = layer_param.mutable_argmax_param(); | ||
argmax_param->set_out_max_val(true); | ||
ArgMaxLayer<TypeParam> layer(layer_param); | ||
layer.SetUp(this->blob_bottom_vec_, &(this->blob_top_vec_)); | ||
layer.Forward(this->blob_bottom_vec_, &(this->blob_top_vec_)); | ||
// Now, check values | ||
const TypeParam* bottom_data = this->blob_bottom_->cpu_data(); | ||
const TypeParam* top_data = this->blob_top_->cpu_data(); | ||
int max_ind; | ||
TypeParam max_val; | ||
int num = this->blob_bottom_->num(); | ||
int dim = this->blob_bottom_->count() / num; | ||
for (int i = 0; i < num; ++i) { | ||
EXPECT_GE(top_data[i], 0); | ||
EXPECT_LE(top_data[i], dim); | ||
max_ind = top_data[i * 2]; | ||
max_val = top_data[i * 2 + 1]; | ||
EXPECT_EQ(bottom_data[i * dim + max_ind], max_val); | ||
for (int j = 0; j < dim; ++j) { | ||
EXPECT_LE(bottom_data[i * dim + j], max_val); | ||
} | ||
} | ||
} | ||
|
||
} // namespace caffe |