Utility function for obtaining current batch of data.
(self)
| 328 | return np.concatenate(self._labels) |
| 329 | |
| 330 | def data(self) -> "cudf.DataFrame": |
| 331 | """Utility function for obtaining current batch of data.""" |
| 332 | return self._data[self.it] |
| 333 | |
| 334 | def labels(self) -> Any: |
| 335 | """Utility function for obtaining current batch of label.""" |
no outgoing calls
no test coverage detected