(self)
| 3247 | return self._get_optimizer_param("lr") |
| 3248 | |
| 3249 | def get_type(self): |
| 3250 | return self._get_optimizer_param("type") |
| 3251 | |
| 3252 | def get_mom(self): |
| 3253 | if self.optimizer_name() in ["SGD", "RMSprop"]: |
nothing calls this directly
no test coverage detected