| 97 | } |
| 98 | |
| 99 | void Model::AddOutput(const std::string &name, const Shaper::Shape &shape) { |
| 100 | output_names_.push_back(name); |
| 101 | shaper_.AddShape(name, shape); |
| 102 | } |
| 103 | |
| 104 | size_t Model::GetSize(const std::string &name) { |
| 105 | return shaper_.GetSize(name); |
no test coverage detected