(self, module, value=False)
| 176 | fn_recursive_attn_processor(name, module, processor) |
| 177 | |
| 178 | def _set_gradient_checkpointing(self, module, value=False): |
| 179 | if hasattr(module, "gradient_checkpointing"): |
| 180 | module.gradient_checkpointing = value |
| 181 | |
| 182 | @classmethod |
| 183 | def from_transformer( |
nothing calls this directly
no outgoing calls
no test coverage detected