Return the shape of the generated Tensor without the batchsize dimension
| 82 | |
| 83 | /// Return the shape of the generated Tensor without the batchsize dimension |
| 84 | virtual const Shape GetOutputSampleShape() const { |
| 85 | LOG(FATAL) << "Pls override this function"; |
| 86 | return vector<size_t>{}; |
| 87 | } |
| 88 | /// Return the shape of the k-th generated tensor without the batchsize |
| 89 | /// dimension. Used for layers that generate multiple tensors. |
| 90 | virtual const Shape GetOutputSampleShape(int k) { |
nothing calls this directly
no outgoing calls
no test coverage detected