| 72 | } |
| 73 | |
| 74 | std::string conv_weight_name(const std::string & block_id, int group, int index) { |
| 75 | return "resblocks." + block_id + ".convs" + std::to_string(group) + "." + |
| 76 | std::to_string(index) + ".weight"; |
| 77 | } |
| 78 | |
| 79 | std::string conv_bias_name(const std::string & block_id, int group, int index) { |
| 80 | return "resblocks." + block_id + ".convs" + std::to_string(group) + "." + |
no test coverage detected