Get reconstruction statistics from replay. Returns: dict: Statistics about record types decoded and samples reconstructed during replay.
(self)
| 79 | return self._reader.get_info()['sample_count'] |
| 80 | |
| 81 | def get_stats(self): |
| 82 | """Get reconstruction statistics from replay. |
| 83 | |
| 84 | Returns: |
| 85 | dict: Statistics about record types decoded and samples |
| 86 | reconstructed during replay. |
| 87 | """ |
| 88 | if self._reader is None: |
| 89 | raise RuntimeError("Reader not open. Use as context manager.") |
| 90 | return self._reader.get_stats() |
| 91 | |
| 92 | |
| 93 | def convert_binary_to_format(input_file, output_file, output_format, |
no outgoing calls