(self, value)
| 635 | return self.optimizer.param_groups |
| 636 | |
| 637 | def _set_param_groups(self, value): |
| 638 | self.optimizer.param_groups = value |
| 639 | |
| 640 | param_groups = property(_get_param_groups, _set_param_groups) |
nothing calls this directly
no outgoing calls
no test coverage detected