| 418 | } |
| 419 | |
| 420 | int64 BatchDescriptor::FullyConnectedWeightCount( |
| 421 | const BatchDescriptor& input, const BatchDescriptor& output) { |
| 422 | return input.NodesAcrossFeatureMaps() * output.NodesAcrossFeatureMaps(); |
| 423 | } |
| 424 | |
| 425 | int64 BatchDescriptor::FullyConnectedBiasCount(const BatchDescriptor& output) { |
| 426 | return output.NodesAcrossFeatureMaps(); |
nothing calls this directly
no test coverage detected