* @brief Does layer-specific setup: your layer should implement this function * as well as Reshape. * * @param bottom * the preshaped input blobs, whose data fields store the input data for * this layer * @param top * the allocated but unshaped output blobs * * This method should do one-time layer specific setup. This includes reading * and processi
| 89 | * adjust the top blob sizes. |
| 90 | */ |
| 91 | virtual void LayerSetUp(const vector<Blob<Dtype>*>& bottom, |
| 92 | const vector<Blob<Dtype>*>& top) {} |
| 93 | |
| 94 | /** |
| 95 | * @brief Adjust the shapes of top blobs and internal buffers to accommodate |
nothing calls this directly
no outgoing calls
no test coverage detected