tools/converter/source/caffe/Softmax.cpp (26 lines of code) (raw):
//
// Softmax.cpp
// MNNConverter
//
// Created by MNN on 2019/01/31.
// Copyright © 2018, Alibaba Group Holding Limited
//
#include "OpConverter.hpp"
class Softmax : public OpConverter {
public:
virtual void run(MNN::OpT* dstOp, const caffe::LayerParameter& parameters, const caffe::LayerParameter& weight);
Softmax() {
}
virtual ~Softmax() {
}
virtual MNN::OpType opType() {
return MNN::OpType_Softmax;
}
virtual MNN::OpParameter type() {
return MNN::OpParameter_Axis;
}
};
void Softmax::run(MNN::OpT* dstOp, const caffe::LayerParameter& parameters, const caffe::LayerParameter& weight) {
auto axisT = new MNN::AxisT;
auto c = parameters.softmax_param();
if (c.has_axis()) {
axisT->axis = c.axis();
} else {
axisT->axis = 1;
}
dstOp->main.value = axisT;
}
static OpConverterRegister<Softmax> a("Softmax");