parent
86bb5ef169
commit
ddfff3a7fd
@ -0,0 +1,87 @@
|
|||||||
|
/* Copyright (c) 2016 Baidu, Inc. All Rights Reserve.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License. */
|
||||||
|
|
||||||
|
#include "BilinearInterpLayer.h"
|
||||||
|
#include "paddle/utils/Logging.h"
|
||||||
|
#include "paddle/utils/Stat.h"
|
||||||
|
|
||||||
|
namespace paddle {
|
||||||
|
|
||||||
|
REGISTER_LAYER(bilinear_interp, BilinearInterpLayer);
|
||||||
|
|
||||||
|
size_t BilinearInterpLayer::getDataDimSize() {
|
||||||
|
getOutput().setFrameHeight(outImgH_);
|
||||||
|
getOutput().setFrameWidth(outImgW_);
|
||||||
|
return outImgH_ * outImgW_ * numChannels_;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool BilinearInterpLayer::init(const LayerMap& layerMap,
|
||||||
|
const ParameterMap& parameterMap) {
|
||||||
|
/* Initialize the basic parent class */
|
||||||
|
Layer::init(layerMap, parameterMap);
|
||||||
|
|
||||||
|
CHECK_EQ(1, config_.inputs_size());
|
||||||
|
|
||||||
|
const BilinearInterpConfig& conf = config_.inputs(0).bilinear_interp_conf();
|
||||||
|
inImgH_ = inputLayers_[0]->getOutput().getFrameHeight();
|
||||||
|
inImgW_ = inputLayers_[0]->getOutput().getFrameWidth();
|
||||||
|
if (inImgH_ == 0) {
|
||||||
|
inImgH_ = conf.img_size_y();
|
||||||
|
}
|
||||||
|
if (inImgW_ == 0) {
|
||||||
|
inImgW_ = conf.img_size_x();
|
||||||
|
}
|
||||||
|
outImgH_ = conf.out_size_y();
|
||||||
|
outImgW_ = conf.out_size_x();
|
||||||
|
numChannels_ = conf.num_channels();
|
||||||
|
|
||||||
|
CHECK(outImgH_ > 0 && outImgW_ > 0);
|
||||||
|
CHECK(inImgH_ > 0 && inImgW_ > 0);
|
||||||
|
CHECK(numChannels_);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void BilinearInterpLayer::forward(PassType passType) {
|
||||||
|
Layer::forward(passType);
|
||||||
|
size_t batchSize = getInput(0).getBatchSize();
|
||||||
|
size_t size = getDataDimSize();
|
||||||
|
{
|
||||||
|
REGISTER_TIMER_INFO("FwResetTimer", getName().c_str());
|
||||||
|
resetOutput(batchSize, size);
|
||||||
|
}
|
||||||
|
|
||||||
|
MatrixPtr inV = getInputValue(0);
|
||||||
|
MatrixPtr outV = getOutputValue();
|
||||||
|
{
|
||||||
|
REGISTER_TIMER_INFO("FwBilinearInterpTimer", getName().c_str());
|
||||||
|
outV->bilinearForward(*inV, inImgH_, inImgW_, outImgH_, outImgW_,
|
||||||
|
numChannels_);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void BilinearInterpLayer::backward(const UpdateCallback& callback) {
|
||||||
|
(void) callback;
|
||||||
|
|
||||||
|
MatrixPtr inputG = getInputGrad(0);
|
||||||
|
MatrixPtr outG = getOutputGrad();
|
||||||
|
{
|
||||||
|
REGISTER_TIMER_INFO("BwBilinearInterpTimer", getName().c_str());
|
||||||
|
if (inputG) {
|
||||||
|
inputG->bilinearBackward(*outG, outImgH_, outImgW_, inImgH_, inImgW_,
|
||||||
|
numChannels_);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} // namespace paddle
|
@ -0,0 +1,45 @@
|
|||||||
|
/* Copyright (c) 2016 Baidu, Inc. All Rights Reserve.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License. */
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "Layer.h"
|
||||||
|
#include "paddle/math/Matrix.h"
|
||||||
|
|
||||||
|
namespace paddle {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief A layer for bilinear interpolation which is
|
||||||
|
* used on conv layer output.
|
||||||
|
*
|
||||||
|
* @note The config file api is bilinear_interp_layer.
|
||||||
|
*/
|
||||||
|
class BilinearInterpLayer : public Layer {
|
||||||
|
protected:
|
||||||
|
size_t outImgH_, outImgW_;
|
||||||
|
size_t inImgH_, inImgW_;
|
||||||
|
size_t numChannels_;
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit BilinearInterpLayer(const LayerConfig& config) : Layer(config) {}
|
||||||
|
|
||||||
|
virtual ~BilinearInterpLayer() {}
|
||||||
|
|
||||||
|
size_t getDataDimSize();
|
||||||
|
bool init(const LayerMap& layerMap, const ParameterMap& parameterMap);
|
||||||
|
void forward(PassType passType);
|
||||||
|
void backward(const UpdateCallback& callback = nullptr);
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace paddle
|
@ -0,0 +1,33 @@
|
|||||||
|
from paddle.trainer_config_helpers import *
|
||||||
|
|
||||||
|
settings(
|
||||||
|
batch_size=1000,
|
||||||
|
learning_rate=1e-5
|
||||||
|
)
|
||||||
|
|
||||||
|
data = data_layer(name='data', size=2304)
|
||||||
|
|
||||||
|
conv = img_conv_layer(input=data,
|
||||||
|
filter_size = 3,
|
||||||
|
num_channels=1,
|
||||||
|
num_filters=16,
|
||||||
|
padding=1,
|
||||||
|
act=LinearActivation(),
|
||||||
|
bias_attr=True)
|
||||||
|
|
||||||
|
bilinear = bilinear_interp_layer(input=conv,
|
||||||
|
img_size_x=32,
|
||||||
|
img_size_y=32,
|
||||||
|
out_size_x=64,
|
||||||
|
out_size_y=64,
|
||||||
|
num_channels=16)
|
||||||
|
|
||||||
|
pool = img_pool_layer(input=bilinear,
|
||||||
|
num_channels=4,
|
||||||
|
pool_size=2,
|
||||||
|
stride=2,
|
||||||
|
pool_type=MaxPooling())
|
||||||
|
|
||||||
|
fc = fc_layer(input=pool, size=384, bias_attr=False)
|
||||||
|
|
||||||
|
outputs(fc)
|
Loading…
Reference in new issue