| 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) + "." + |
| 81 | std::to_string(index) + ".bias"; |
| 82 | } |
| 83 | |
| 84 | struct Conv1dLayer { |
| 85 | int64_t out_channels = 0; |
no test coverage detected