(self)
| 3456 | return self._get_optimizer_param("lr") |
| 3457 | |
| 3458 | def get_type(self): |
| 3459 | return self._get_optimizer_param("type") |
| 3460 | |
| 3461 | def get_mom(self): |
| 3462 | if self.optimizer_name() in ["SGD", "RMSprop"]: |
nothing calls this directly
no test coverage detected