(self)
| 3581 | return self._get_optimizer_param("lr") |
| 3582 | |
| 3583 | def get_type(self): |
| 3584 | return self._get_optimizer_param("type") |
| 3585 | |
| 3586 | def get_mom(self): |
| 3587 | if self.optimizer_name() in ["SGD", "RMSprop"]: |
nothing calls this directly
no test coverage detected