Read an HDF5 file and return its content as a Batch object. See Data.load()
(cls, *args, **kwargs)
| 1199 | |
| 1200 | @classmethod |
| 1201 | def load(cls, *args, **kwargs) -> Union['Batch', 'Data']: |
| 1202 | """Read an HDF5 file and return its content as a Batch object. |
| 1203 | |
| 1204 | See Data.load() |
| 1205 | """ |
| 1206 | return Data.load(*args, **kwargs) |