(name)
| 157 | |
| 158 | |
| 159 | def get_activation(name): |
| 160 | def hook(model, input, output): |
| 161 | activations[name] = output |
| 162 | |
| 163 | return hook |
| 164 | |
| 165 | |
| 166 | def get_readout_oper(vit_features, features, use_readout, start_index=1): |
no outgoing calls
no test coverage detected