Returns the batch size of a single forward pass.
(self)
| 276 | |
| 277 | @property |
| 278 | def batch_size(self): |
| 279 | """ |
| 280 | Returns the batch size of a single forward pass. |
| 281 | """ |
| 282 | return self.estimator.batch_size |
| 283 | |
| 284 | @batch_size.setter |
| 285 | def batch_size(self, value): |
nothing calls this directly
no outgoing calls
no test coverage detected