Updates paths inside resnets to the new naming scheme (local renaming)
(old_list, n_shave_prefix_segments=0)
| 206 | |
| 207 | |
| 208 | def renew_resnet_paths(old_list, n_shave_prefix_segments=0): |
| 209 | """ |
| 210 | Updates paths inside resnets to the new naming scheme (local renaming) |
| 211 | """ |
| 212 | mapping = [] |
| 213 | for old_item in old_list: |
| 214 | new_item = old_item.replace("in_layers.0", "norm1") |
| 215 | new_item = new_item.replace("in_layers.2", "conv1") |
| 216 | |
| 217 | new_item = new_item.replace("out_layers.0", "norm2") |
| 218 | new_item = new_item.replace("out_layers.3", "conv2") |
| 219 | |
| 220 | new_item = new_item.replace("emb_layers.1", "time_emb_proj") |
| 221 | new_item = new_item.replace("skip_connection", "conv_shortcut") |
| 222 | |
| 223 | new_item = shave_segments(new_item, n_shave_prefix_segments=n_shave_prefix_segments) |
| 224 | |
| 225 | mapping.append({"old": old_item, "new": new_item}) |
| 226 | |
| 227 | return mapping |
| 228 | |
| 229 | |
| 230 | def renew_attention_paths(old_list, n_shave_prefix_segments=0): |
no test coverage detected