* @param param provides ArgMaxParameter argmax_param, * with ArgMaxLayer options: * - top_k (\b optional uint, default 1). * the number @f$ K @f$ of maximal items to output. * - out_max_val (\b optional bool, default false). * if set, output a vector of pairs (max_ind, max_val) unless axis is set then * output max_val along the specified axis. * - axis (\
| 36 | * trailing dimensions for each index of the first / num dimension. |
| 37 | */ |
| 38 | explicit ArgMaxLayer(const LayerParameter& param) |
| 39 | : Layer<Dtype>(param) {} |
| 40 | virtual void LayerSetUp(const vector<Blob<Dtype>*>& bottom, |
| 41 | const vector<Blob<Dtype>*>& top); |
| 42 | virtual void Reshape(const vector<Blob<Dtype>*>& bottom, |
nothing calls this directly
no outgoing calls
no test coverage detected