Returns the number of epochs of a single fit cycle.
(self)
| 255 | |
| 256 | @property |
| 257 | def num_epochs(self): |
| 258 | """ |
| 259 | Returns the number of epochs of a single fit cycle. |
| 260 | """ |
| 261 | return self.estimator.max_epochs |
| 262 | |
| 263 | @num_epochs.setter |
| 264 | def num_epochs(self, value): |
nothing calls this directly
no outgoing calls
no test coverage detected